Recherche avancée

Médias (91)

Autres articles (102)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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 (...)

Sur d’autres sites (6689)

  • avcodec/wmalosslessdec : Check that padding bits is not more than sample bits

    18 novembre 2019, par Michael Niedermayer
    avcodec/wmalosslessdec : Check that padding bits is not more than sample bits
    

    Fixes : left shift of 1 by 31 places cannot be represented in type 'int'
    Fixes : 18817/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5713317180211200

    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/wmalosslessdec.c
  • avcodec/wmaprodec : Fixes integer overflow with 32bit samples

    20 novembre 2019, par Michael Niedermayer
    avcodec/wmaprodec : Fixes integer overflow with 32bit samples
    

    Fixes : left shift of 1 by 31 places cannot be represented in type 'int'
    Fixes : 18860/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMAPRO_fuzzer-5755223125786624

    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/wmaprodec.c
  • lavc/hevcdec : do not pass a pixel format to set_sps()

    12 juin 2024, par Anton Khirnov
    lavc/hevcdec : do not pass a pixel format to set_sps()
    

    It is merely copied to AVCodecContext.pix_fmt, which serves no useful
    purpose. set_sps() is called from two places :
    * when a new SPS becomes active - then the pixel format is
    overridden immediately after the set_sps() call by the result from
    ff_get_format() ;
    * when a new SPS is propagated across frame threads - then the
    AVCodecContext value is already set to the same value by the generic
    code.

    • [DH] libavcodec/hevc/hevcdec.c