Recherche avancée

Médias (91)

Autres articles (42)

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

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

Sur d’autres sites (9858)

  • avformat/id3v2 : Fix double-free on error

    10 novembre 2019, par Andreas Rheinhardt
    avformat/id3v2 : Fix double-free on error
    

    ff_id3v2_parse_priv_dict() uses av_dict_set() with the flags
    AV_DICT_DONT_STRDUP_KEY and AV_DICT_DONT_STRDUP_VAL. In this case both
    key and value are freed on error (and owned by the destination
    dictionary on success), so that freeing them again on error is a
    double-free and therefore forbidden. But it nevertheless happened.

    Fixes CID 1452489 and 1452421.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/id3v2.c
  • avcodec/libdav1d : properly free all output picture references

    8 janvier 2019, par James Almer
    avcodec/libdav1d : properly free all output picture references
    

    Dav1dPictures contain more than one buffer reference, so we're forced to use the
    API properly to free them all.

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

    • [DH] libavcodec/libdav1d.c
  • avcodec/vaapi : free slice_buffers when decoding failed

    19 septembre 2018, par Linjie Fu
    avcodec/vaapi : free slice_buffers when decoding failed
    

    If vaEndPicture() failed in ff_vaapi_decode_issue(), free
    the pic->slice_buffers.

    Fixes the memory leak issue in ticket #7385

    Signed-off-by : Linjie Fu <linjie.fu@intel.com>
    Signed-off-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavcodec/vaapi_decode.c