Recherche avancée

Médias (91)

Autres articles (50)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (6235)

  • avformat/swfdec : Check outlen before allocation

    22 janvier 2021, par Michael Niedermayer
    avformat/swfdec : Check outlen before allocation
    

    Fixes : Timeout (too long -> 241ms)
    Fixes : 29083/clusterfuzz-testcase-minimized-ffmpeg_dem_SWF_fuzzer-6273684478230528

    The source of the magic number is
    A very quick simulation of the best case compression for "compress"
    below is not nice written code as i did not expect I or anyone else
    would ever see it again

    I would have preferred some nicer expression or course, but thats
    what it seems to be asymptotically. For smaller amounts of data a
    tighter bound is possible but i saw no nice way to consider that
    and it seems also overkill to try to do it more fine grained for
    just this

    main()
    int64_t bits = 0 ;
    int bank = 256 ;
    int bitbank = 8 ;
    for(unsigned i = 0 ; i<1024*1024*1024*4U-100000 ;)
    int word_size = bank-255 ;
    i += word_size ;
    bits += bitbank ;

    if (!(bank & (bank-1)))
    bitbank ++ ;
    bank++ ;
    if (bitbank > 16)
    printf("BEST %f \n", 8.0 * i / bits ) ;
    bank = 256 ;
    bitbank = 8 ;


    above assumes i remembered correctly how the algorithm works but the
    value was close to what actual compession of zeros gave

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

    • [DH] libavformat/swfdec.c
  • swscale/swscale_unscaled : account for semi planar formats with data in the msb

    14 mars, par James Almer
    swscale/swscale_unscaled : account for semi planar formats with data in the msb
    

    Fixes fate failures introduced by recent tests that exercise the faulty code.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libswscale/swscale_unscaled.c
    • [DH] tests/ref/pixfmt/p410-nv24
    • [DH] tests/ref/pixfmt/p410-p412be
    • [DH] tests/ref/pixfmt/p410-p412le
    • [DH] tests/ref/pixfmt/p410-p416be
    • [DH] tests/ref/pixfmt/p410-p416le
    • [DH] tests/ref/pixfmt/p412-nv24
    • [DH] tests/ref/pixfmt/p412-p410be
    • [DH] tests/ref/pixfmt/p412-p410le
    • [DH] tests/ref/pixfmt/p412-p416be
    • [DH] tests/ref/pixfmt/p412-p416le
  • avfilter/vf_pixdesctest : also take into account undefined alpha components

    18 octobre 2024, par James Almer
    avfilter/vf_pixdesctest : also take into account undefined alpha components
    

    Ensure those bits are copied, which will result in the output being the same as
    the input, where swscale set them to the equivalent of fully opaque.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/vf_pixdesctest.c
    • [DH] tests/ref/fate/filter-pixdesc-0bgr
    • [DH] tests/ref/fate/filter-pixdesc-0rgb
    • [DH] tests/ref/fate/filter-pixdesc-bgr0
    • [DH] tests/ref/fate/filter-pixdesc-rgb0
    • [DH] tests/ref/fate/filter-pixdesc-v30xle
    • [DH] tests/ref/fate/filter-pixdesc-vuyx
    • [DH] tests/ref/fate/filter-pixdesc-x2bgr10le
    • [DH] tests/ref/fate/filter-pixdesc-x2rgb10le
    • [DH] tests/ref/fate/filter-pixdesc-xv30le
    • [DH] tests/ref/fate/filter-pixdesc-xv36be
    • [DH] tests/ref/fate/filter-pixdesc-xv36le