Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (89)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (15979)

  • fate/png : add test for ICC profile parsing

    28 juillet 2022, par Niklas Haas
    fate/png : add test for ICC profile parsing
    

    This tests the new "-flags2 icc_profiles" option by making sure the
    embedded ICC profile gets correctly detected as sRGB.

    Signed-off-by : Niklas Haas <git@haasn.dev>

    • [DH] tests/fate/image.mak
    • [DH] tests/ref/fate/png-icc-parse
  • avcodec/codec_internal : add cap for ICC profile support

    28 juin 2022, par Niklas Haas
    avcodec/codec_internal : add cap for ICC profile support
    

    Codecs that can read/write ICC profiles deserve a special capability so
    the common logic in encode.c/decode.c can decide whether or not there
    needs to be any special handling for ICC profiles. The motivation here
    is to be able to use it to decide whether or not an ICC profile needs to
    be generated in the encode path, but it might as well get added to
    decoders as well for purely informative reasons.

    It's not entirely clear to me whether the "thp" and "smvjpeg" variants
    of "mjpeg" should have this capability set or not, given that the code
    technically supports it but I somehow doubt these files may contain
    them. In either case, this cap is purely informative for decoders so it
    doesn't matter too much either way.

    It's also not entirely clear whether the "amv" encoder should signal ICC
    profile support, but again erring on the side of caution, we probably
    *shouldn't* be generating (and encoding !) ICC profiles for this type of
    media file.

    Signed-off-by : Niklas Haas <git@haasn.dev>

    • [DH] libavcodec/codec_internal.h
    • [DH] libavcodec/libjxldec.c
    • [DH] libavcodec/libjxlenc.c
    • [DH] libavcodec/mjpegdec.c
    • [DH] libavcodec/mjpegenc.c
    • [DH] libavcodec/pngdec.c
    • [DH] libavcodec/pngenc.c
    • [DH] libavcodec/tiff.c
    • [DH] libavcodec/webp.c
  • libavformat/hlsenc.c : Populate OTI using AAC profile in write_codec_attr.

    1er janvier 2024, par Romain Beauxis
    libavformat/hlsenc.c : Populate OTI using AAC profile in write_codec_attr.
    

    This patch populates the third entry for HLS codec attribute using the
    AAC profile.

    The HLS specifications[1] require this value to be the Object Type ID as
    referred to in table 1.3 of ISO/IEC 14496-3:2009[2].

    The numerical constants in the code refer to these OTIs minus one, as
    documented in commit 372597e[3], confirmed by comparing the values in the
    code with the values in the table mentioned above.

    Links :
    1 : https://datatracker.ietf.org/doc/html/rfc6381#section-3.3
    2 : https://csclub.uwaterloo.ca/~ehashman/ISO14496-3-2009.pdf
    3 : https://github.com/FFmpeg/FFmpeg/commit/372597e5381c097455a7b73849254d56083eb056

    Changes in this version :
    - Default value set to "mp4a.40.2" when profile is unknown for backward
    compatibility.

    Signed-off-by : Steven Liu <liuqi05@kuaishou.com>

    • [DH] libavformat/hlsenc.c