Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (22)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (4899)

  • lavc/mpeg4videodec : do not invent a framerate from guessed numbers

    1er octobre 2023, par Anton Khirnov
    lavc/mpeg4videodec : do not invent a framerate from guessed numbers
    

    Improves timestamps for fate-m4v*

    • [DH] libavcodec/mpeg4videodec.c
    • [DH] tests/ref/fate/m4v
    • [DH] tests/ref/fate/m4v-cfr
  • avcodec/escape124 : Do not return random numbers

    16 septembre 2023, par Michael Niedermayer
    avcodec/escape124 : Do not return random numbers
    

    Fixes : out of array access
    Fixes : 62164/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ESCAPE124_fuzzer-6035022714634240
    Fixes : 62164/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ESCAPE124_fuzzer-6422176201572352

    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/escape124.c
  • avcodec/jpeg2000 : Simplify exp2fi for numbers used here

    17 février 2024, par Andreas Rheinhardt
    avcodec/jpeg2000 : Simplify exp2fi for numbers used here
    

    The call to ff_exp2fi() here always uses arguments in the normal
    range, so that the branches in ff_exp2fi() are unnecessary.
    This is so because JPEG2000 itself only supports up to
    128 bits per component per pixel (we only support far less) ;
    furthermore, expn is always 0..31 for the decoder and also
    sane for the encoder, so that the difference between these
    two values is always in the normal range of -126..128.

    Reviewed-by : Tomas Härdin <git@haerdin.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/jpeg2000.c