Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (104)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (10756)

  • lavf : Add an option for avoiding negative timestamps

    26 septembre 2012, par Michael Niedermayer
    lavf : Add an option for avoiding negative timestamps
    

    This is the same logic as is invoked on AVFMT_TS_NEGATIVE,
    but which can be enabled manually, or can be enabled
    in muxers which only need it in certain conditions.

    Also allow using the same mechanism to force streams to start
    at 0.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] doc/APIchanges
    • [DH] libavformat/avformat.h
    • [DH] libavformat/mux.c
    • [DH] libavformat/options_table.h
    • [DH] libavformat/version.h
  • Revision 6478673933 : Enable sub-pixel motion search for rtc mode Run sub-pixel motion search when NE

    14 février 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_pickmode.c



    Enable sub-pixel motion search for rtc mode

    Run sub-pixel motion search when NEWMV gives lower rate-distortion
    cost. This improves coding performance of derf set by 8%, std-hd by
    2.2%.

    Change-Id : Ife50f7fda8463927784fe59a41cc439c833e941a

  • How to add background image for text with text size on a video in FFmpeg ?

    24 octobre 2019, par manwtein

    Is there way to add a background image under the text on the video in FFmpeg ?

    I can add black background using ’box’, but i need to add some certain image. I tried to use ’drawtext’ on a image and then overlayed it on the video, but i don’t know text’s width and height for scaling the image.

    "-i",
    "D:/AndroidProjects/Movies/VideoSamples/VideoShort1.mp4",
    "-i",
    "D:/AndroidProjects/Movies/ImageSamples/SampleImage.jpeg",
    "-filter_complex",
    "[0:v]drawtext=text='Example':fontcolor=#DB7093:fontsize=120:box=1:boxcolor=black@0.8:boxborderw=5:x='(w/2) - (tw/2)':y='h - ((h/2) - (th/2))",
    "-s",
    "1280x720",
    "-y",
    "D:/AndroidProjects/Movies/FFmpegSampleShort0.mp4"

    I expect to get video with some image background under my text instead black color.
    Final video