Recherche avancée

Médias (91)

Autres articles (60)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • Concatenation of files using ffmpeg does not work as I expected. Why ?

    19 décembre 2018, par Peter Olson

    I execute the following command line

    ffmpeg.exe
       -i C:\Beema\video-source\DO_U_BEEMA176x144short.avi
       -i C:\Beema\video-source\DO_U_BEEMA176x144short.avi
       -i C:\Beema\temp\9016730-51056331-stitcheds.avi  
       -i C:\Beema\video-source\GOTTA_BEEMA176x144short.avi
       -y -ac 1 -r 24 -b 25K
       C:\Beema\video-out\9a062fb6-d448-48fe-b006-a85d51adf8a1.mpg

    The output file in video-out ends up having a single copy of DO_U_BEEMA. I do not understand why ffmpeg is not concatenating.

    Any help is dramatically appreciated,

  • h264 : make slice threading work with deblocking_filter=1

    13 avril 2016, par Anton Khirnov
    h264 : make slice threading work with deblocking_filter=1
    

    In such a case, decode the MBs in parallel without the loop filter, then
    execute the filter serially.

    The ref2frm array was previously moved to H264SliceContext. That was
    incorrect, since it applies to all the slices and should properly be in
    H264Context (it did not actually break decoding, since this distinction
    only becomes relevant with slice threading and deblocking_filter=1,
    which was not implemented before this commit). The ref2frm array is thus
    moved back to H264Context.

    • [DBH] libavcodec/h264.c
    • [DBH] libavcodec/h264.h
    • [DBH] libavcodec/h264_slice.c
  • ffmpeg How does the blend filter work

    8 juin 2018, par tainguyen

    I have small project which uses blend filter of FFmpeg library.

    I read the examples of this document
    https://ffmpeg.org/ffmpeg-filters.html#blend_002c-tblend

    But I’m not clearly understand about it.

    X, Y : the coordinates of the current sample

    W, H : the width and height of currently filtered plane

    What are the sample and filtered plane ?
    Is there any document about these things.