Recherche avancée

Médias (91)

Autres articles (101)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (5337)

  • mpeg2_metadata : Localize inserting of sequence display extensions

    20 juin 2019, par Andreas Rheinhardt
    mpeg2_metadata : Localize inserting of sequence display extensions
    

    If a new sequence display extension had to be added, this was up until
    now done at two places : One where a sequence display extension was
    initialized with default values and one where the actual sequence
    display extension was inserted into the fragment. This division of
    labour is unnecessary and pointless ; it has been changed.

    Furthermore, if a sequence display extension has to be added, the
    earlier code set some fields to their default value twice. This has been
    changed, too.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/mpeg2_metadata_bsf.c
  • avcodec/snappy : Sanity check bytestream2_get_levarint()

    19 janvier 2020, par Michael Niedermayer
    avcodec/snappy : Sanity check bytestream2_get_levarint()
    

    Fixes : left shift of 79 by 28 places cannot be represented in type 'int'
    Fixes : 20202/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HAP_fuzzer-5719004081815552
    Fixes : 20219/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HAP_fuzzer-5641738677125120
    Fixes : 20389/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HAP_fuzzer-5680721517871104

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/snappy.c
  • avformat/matroskaenc : Unify writing level 1 elements preliminarily

    29 avril 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Unify writing level 1 elements preliminarily
    

    The Matroska muxer updates several header elements when the output is
    seekable ; if unseekable, the buffer containing the contents of the element
    is immediately freed after writing. Before this commit, there were three
    places doing exactly the same : Checking whether the output is seekable
    and calling the function that writes and frees or the function that
    just writes the EBML master. This has been unified ; adding SeekHead
    entries for these elements has been unified, too.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c