Recherche avancée

Médias (91)

Autres articles (3)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

  • avcodec/libx264 : Set colorspace details correctly

    16 décembre 2013, par Torsten Jager
    avcodec/libx264 : Set colorspace details correctly
    

    After adding colorspace support to xine-lib, I insist in proper
    settings within media files at least when they do not follow
    that implicit SD/HD routine.

    • [DH] libavcodec/libx264.c
  • avcodec/libx264 : remove FF_CODEC_CAP_INIT_THREADSAFE flag

    20 octobre 2018, par Marton Balint
    avcodec/libx264 : remove FF_CODEC_CAP_INIT_THREADSAFE flag
    

    Libx264 uses strtok which is not thread safe. Strtok is used in
    x264_param_default_preset in param_apply_tune in x264/common/base.c.
    Therefore the flag must be removed.

    x264 fixed the issue, once the fix is pushed to stable, an #if can be added
    to re-enable the flag based on X264_BUILD number.

    Fixes ticket #7446.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/libx264.c
  • avcodec/libx264 : move sei_data_size out of the for loop

    20 octobre 2021, par James Almer
    avcodec/libx264 : move sei_data_size out of the for loop
    

    Otherwise its value will be reset on each iteration.

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

    • [DH] libavcodec/libx264.c