Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (44)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (8031)

  • avfilter/vf_xbr : Fix left shift of negative number

    28 septembre 2019, par Andreas Rheinhardt
    avfilter/vf_xbr : Fix left shift of negative number
    

    Affected every usage of vf_xbr, e.g. the FATE-tests filter-2xbr,
    filter-3xbr, filter-4xbr.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_xbr.c
  • avcodec/ac3enc : Fix invalid shift

    20 septembre 2019, par Andreas Rheinhardt
    avcodec/ac3enc : Fix invalid shift
    

    Fixes the FATE-tests unknown_layout-ac3, ac3-fixed-encode, ac3-encode
    and eac3-encode. It furthermore fixes the ac3-encoder bugs mentioned in
    tickets #7994, #8144 and #8159.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ac3enc.c
  • avutil/common : Fix undefined shift

    18 septembre 2019, par Andreas Rheinhardt
    avutil/common : Fix undefined shift
    

    av_mod_uintp2_c uses a bitwise AND with (1 << p) - 1 to clear the high
    bits of an unsigned int. But this is undefined if p == 31, because 1 is
    an int and 2^31 is not representable in an int. So make 1 unsigned.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/common.h