Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (105)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

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

  • avcodec/lossless_videoencdsp : Fix unaligned access

    13 mars 2024, par Andreas Rheinhardt
    avcodec/lossless_videoencdsp : Fix unaligned access
    

    HAVE_FAST_UNALIGNED being true does not imply that
    one can simply read from any pointer via *(long*).
    It is undefined behaviour in case the pointer is not
    sufficiently aligned ; and even if it is, it is (likely)
    a violation of the effective-type rules. Fix both
    of these by using the appropriate AV_[RW]N macros.

    Also, the current code used sizeof(long) as if this
    were the CPU's native arithmetic size, but this is
    not true on 64bit Windows. This has been fixed, too.

    This affected huffyuv FATE-tests.

    Tested-by : Sean McGovern <gseanmcg@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/lossless_videoencdsp.c
  • Merge commit ’f128b8e19ac7f702adae899ab91cc1e80f238761’

    10 novembre 2015, par Hendrik Leppkes
    Merge commit ’f128b8e19ac7f702adae899ab91cc1e80f238761’
    

    * commit ’f128b8e19ac7f702adae899ab91cc1e80f238761’ :
    mov : detect cover art pictures by content

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] libavformat/mov.c
  • mpegvideo : Use picture_ptr instead of picture in ff_mpeg_draw_horiz_band()

    20 août 2013, par Michael Niedermayer
    mpegvideo : Use picture_ptr instead of picture in ff_mpeg_draw_horiz_band()
    

    Fixes strides and issue with mplayer and mpeg2 field pictures

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/mpegvideo.c