I am using FFmpeg version SVN-r0.5.9-4:0.5.9-0ubuntu0.10.04.3 and it doesn't allow me to use -filter_complex.
It shows:
ffmpeg: unrecognized option '-filter_complex'
I want to overlay 2 videos, how can I get that option?
I am using FFmpeg version SVN-r0.5.9-4:0.5.9-0ubuntu0.10.04.3 and it doesn't allow me to use -filter_complex.
It shows:
ffmpeg: unrecognized option '-filter_complex'
I want to overlay 2 videos, how can I get that option?
Your version is way too old, and in fact I don't think it even supports any filters if I recall correctly. You can check with ffmpeg -filters.
ffmpegTo get a recent version you can compile ffmpeg or simply download a static build. Users of Ubuntu 15.04 or newer can just install ffmpeg from the repository.
This example will:
video1.mp4 20 pixels down and 40 pixels over.video2.mp4 in the middle.Combine audio from video1.mp4 and video2.mp4.
ffmpeg -i bg.mp4 -i video1.mp4 -i video2.mp4 -filter_complex \
"[0:v][1:v]setpts=PTS-STARTPTS,overlay=20:40[bg]; \
[bg][2:v]setpts=PTS-STARTPTS,overlay=(W-w)/2:(H-h)/2[v]; \
[1:a][2:a]amerge=inputs=2[a]" \
-map "[v]" -map "[a]" -ac 2 output.mp4
use -vf instead of -filter_complex like
ffmpeg -i new1.mp4 -vf "movie=wlogo.png [watermark]; [in][watermark] overlay=main_w-overlay_w-10:10 [out]" -strict experimental output.mp4
ffmpeg. Your solution should be a last resort if you are unable to upgrade.
– llogan
Mar 04 '16 at 22:54