Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (104)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (6701)

  • doc/general : mark that CFHD have encoder now

    11 août 2020, par Paul B Mahol
    doc/general : mark that CFHD have encoder now
    
    • [DH] doc/general.texi
  • doc/general.texi : Adjust the notes on AviSynth

    12 mars 2014, par Stephen Hutchinson
    doc/general.texi : Adjust the notes on AviSynth
    

    FFmpeg provides local copies of these headers in compat/avisynth/,
    and there is no restriction against using 2.5.

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

    • [DH] doc/general.texi
  • avcodec/mlpenc : Simplify finding best codebook

    26 décembre 2020, par Andreas Rheinhardt
    avcodec/mlpenc : Simplify finding best codebook
    

    Finding the best codebook involves comparing different paths, where each
    path is a sequence of several decisions (namely which codebook to use).
    Up until now, these sequence was encoded in a NUL-terminated string and
    the actual decisions were encoded as ’\0'..'\3' (which encoded 0..3).
    This commit modifies this to actually encode it via 0..3 by switching
    away from a C-string to a simple array with an explicit length field.

    Reviewed-by : Lynne <dev@lynne.ee>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/mlpenc.c