Recherche avancée

Médias (91)

Autres articles (71)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (2551)

  • lavc/videotoolboxenc : explicitly set realtime=false

    18 décembre 2021, par rcombs
    lavc/videotoolboxenc : explicitly set realtime=false
    

    On some encoders, this defaults to true, which can result in encode speed
    being _limited_ to only slightly above realtime (as a power-saving measure),
    so we need a way to disable it.

    • [DH] libavcodec/videotoolboxenc.c
  • tools : Use av_gettime_relative()

    6 mai 2014, par Olivier Langlois
    tools : Use av_gettime_relative()
    

    Whenever av_gettime() is used to measure relative period of time,
    av_gettime_relative() is prefered as it guarantee monotonic time
    on supported platforms.

    Signed-off-by : Olivier Langlois <olivier@trillion01.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] tools/aviocat.c
  • lavc/vvc : Fix buffer overread in CABAC

    9 avril 2024, par Frank Plowman
    lavc/vvc : Fix buffer overread in CABAC
    

    The size variable here is taken as gospel for the bounds of the input
    buffer in later logic. Clamp it to ensure that the returned region
    does not extend past that allocated in the underlying GetBitContext,
    even in the case entry point offsets are signalled in the bitstream.
    Also assert this for good measure.

    Signed-off-by : Frank Plowman <post@frankplowman.com>

    • [DH] libavcodec/vvc/dec.c