Recherche avancée

Médias (91)

Autres articles (55)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

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

Sur d’autres sites (8865)

  • avformat/flvdec : don't skip backwards or over EOF

    14 juillet, par Timo Rothenpieler
    avformat/flvdec : don't skip backwards or over EOF
    

    Skipping backwards (and even forwards) resets the EOF flag, and can thus
    lead to infinite looping if the conditions are just right.

    Fixes : Infinite loop
    Fixes : 427538726/clusterfuzz-testcase-minimized-ffmpeg_dem_FLV_fuzzer-6582567304495104

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavformat/flvdec.c
  • How to initialize video decoder with a already decoded frame ?

    27 mars, par Ragdoll Car

    Let's say I have an FFmpeg video decoder x264 initially initialized with some parameters. I am using C++ in my scenario. In normal conditions we push an encoded I-frame into such decoder and then referencing encoded P-frames.

    &#xA;

    I have a special case where my I-frame is already decoded. So in my case I want to :

    &#xA;

      &#xA;
    • push already decoded I-frame into my decoder
    • &#xA;

    • push referencing encoded P-frames into my decoder
    • &#xA;

    &#xA;

    How can I initialize the decoder state with already decoded I-frame ? Currently to bypass these limitations I have to :

    &#xA;

      &#xA;
    • create a new temporary encoder
    • &#xA;

    • encode already decoded I-frame
    • &#xA;

    • decode encoded I-frame
    • &#xA;

    • and then I am able to push referencing encoded P-frames
    • &#xA;

    &#xA;

  • How to initialize video decoder with a already decoded frame ?

    27 mars, par Ragdoll Car

    Let's say I have an FFmpeg video decoder x264 initially initialized with some parameters. I am using C++ in my scenario. In normal conditions we push an encoded I-frame into such decoder and then referencing encoded P-frames.

    &#xA;

    I have a special case where my I-frame is already decoded. So in my case I want to :

    &#xA;

      &#xA;
    • push already decoded I-frame into my decoder
    • &#xA;

    • push referencing encoded P-frames into my decoder
    • &#xA;

    &#xA;

    How can I initialize the decoder state with already decoded I-frame ? Currently to bypass these limitations I have to :

    &#xA;

      &#xA;
    • create a new temporary encoder
    • &#xA;

    • encode already decoded I-frame
    • &#xA;

    • decode encoded I-frame
    • &#xA;

    • and then I am able to push referencing encoded P-frames
    • &#xA;

    &#xA;