Recherche avancée

Médias (91)

Autres articles (19)

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

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

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

  • Using ffmpeg to create a video from a sequence of TGA images, with a depth of field blur effect sourced from the TGA's alpha channel

    19 mars 2016, par vpvp

    I’m working on turning a sequence of TGA images into a video using ffmpeg. I want the video to have a depth of field blur effect. The alpha channel of each TGA contains a depth-mask, where black=close and white=far. I want to use this info to add DOF blur to the final output of that frame. After searching, the closest answer I could find was this
    http://superuser.com/questions/916431/ffmpeg-filter-to-boxblur-and-greyscale-a-video-using-alpha-mask, but it is for a static dof-mask. The DOF mask I would be using is obviously changing every frame, and an alpha channel instead of a seperate png.

    Here is my current cmd line

    ffmpeg -framerate 60 -i image.%10d.tga -c:v libx264 -preset slow -crf 0 -c:a copy -pix_fmt yuv420p output0.mp4

    It seems the answer would involve some use of alphamerge/alphaextract/boxblur, but I’m brand new to ffmpeg so I don’t know how to formulate the command.

    Thanks in advance.

  • how ffmpeg preserves alpha channel

    16 septembre 2017, par LiJianixn

    We know ffmpeg can help us with overlaying image on video.My target is to wrap a video with an image whose background is transparent.

    ffmpeg -i device/nexus5_portrait.png -i device/input.mp4\
    -filter_complex "overlay=(W-w)/2:(H-h)/2:enable='between(t,0,5)'"\
    -b:v 16M -bufsize 16M device/output.mp4;

    Output.mp4 has a black background so is there any way to preserve alpha channel ?

    Thanks in advance !

  • drawtext : Add an alpha option

    11 avril 2015, par Luca Barbato
    drawtext : Add an alpha option
    

    And document both `draw` and `alpha`.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_drawtext.c