
Recherche avancée
Autres articles (111)
-
Les formats acceptés
28 janvier 2010, parLes 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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (6738)
-
Overlay video after set time offset with FFmpeg
5 août 2012, par ProduitbrutI'm trying to add overlays to an input video with ffmpeg that appear some time after the video starts.
The basic way to add an overlay is :
ffmpeg -i in.avi -vf "movie=overlay.avi [ovl]; [in][ovl] overlay" out.avi
But this adds the overlay video (or image) from the start of the input video until one of the videos ends.
I know how to offset the overlay video using
movie=overlay.avi:seek_point=1.4
, but what about an offset on the input video ?I could always clip the video to the desired point, add overlay on the second clip, then stitch the two but that's not very efficient.
-
Applying multiple filters at once with FFMPEG
8 novembre 2024, par ParziphalI have the need to apply fadein and overlay filters to a video. Is it possible to apply 2 filters at once ?


I got :



ffmpeg -i input.mpg -vf "movie=watermark.png [logo]; [in][logo] overlay=W-w-10:H-h-10 [out]" output.mpg



I'm trying to add
fade=in:0:20
, but if I add a new-vf
parameter, it will overwrite the preceding one, and if I add :

-vf "fade=in:0:20; movie=......"



it won't work.


Is this possible or do I have to run FFmpeg twice ?


-
lavf/mov.c : Set st->start_time for video streams explicitly.
30 mai 2018, par Sasi Inguvalavf/mov.c : Set st->start_time for video streams explicitly.
If start_time is not set, ffmpeg takes the duration from the global
movie instead of the per stream duration.
Signed-off-by : Sasi Inguva <isasi@google.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>