Recherche avancée

Médias (91)

Autres articles (40)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • lavfi/movie : free packet on decoder error

    25 juin 2013, par Michael Niedermayer
    lavfi/movie : free packet on decoder error
    

    Prevents infinite loop, see Ticket2556

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

    • [DH] libavfilter/src_movie.c
  • lavfi/aevalsrc : do not free AVOption variables in uninit()

    10 juillet 2013, par Paul B Mahol
    lavfi/aevalsrc : do not free AVOption variables in uninit()
    

    The generic code frees them already.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/asrc_aevalsrc.c
  • avcodec/ra144enc : Don't free unnecessarily

    12 septembre 2020, par Andreas Rheinhardt
    avcodec/ra144enc : Don't free unnecessarily
    

    The init function of the real_144 encoder calls its own close function
    if a call to ff_lpc_init() fails ; yet nothing has been allocated before
    that point and ff_lpc_init() can be expected to clean up after itself on
    error (the documentation does not say anything to the contrary and the
    current implementation can only fail if the only allocation fails, so
    there is nothing to clean up on error anyway), so this is unnecessary.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/ra144enc.c