Info Center has pages, examples, hints, and snippets on the various topics in the menu above. Explore and enjoy.
Simple Single image Overlay Without Sound
Example: Simple Single image Overlay Without SoundEXAMPLE
ffmpeg -i vids/short.mp4 -loop 1 -i small.png -filter_complex \ "[1:v]fade=t=in:st=10:d=2,fade=t=out:st=20:d=3[over];[0:v][over]overlay=50:50" \ -pix_fmt yuv420p -c:a copy -t 30 vids/VIDEO.mp4 ffmpeg -r 20 -i _%04d.jpg -y -s 750x750 -aspect 1:1 framess.mp4" ffmpeg -framerate 2 -i _%04d.jpg -vf "framerate=fps=30:interp_start=64:interp_end=192:scene=100" test.mp4 ERROR ffmpeg -i output60.mp4 -vf mpdecimate,setpts=N/FRAME_RATE/TB -map:v 0 scene3.mp4 no such filter mpdecimate
ffmpeg -i vids/short.mp4 -vf "zoompan=z='zoom+0.001':x='if(gte(zoom,1.5),x,x-1)':y='y':d=700" \ -c:a copy -t 30 vids/ZOOM.mp4
Simple Zoom
ffmpeg -i vids/ZOOM.mp4 -i small.png -filter_complex 'overlay[out]' -map '[out]' vids/zoom-small.mp4
Simple Sliding Overlay Without Sound
Example: Simple Sliding Overlay Without Soundffmpeg -i vids/short.mp4 -i small.png -filter_complex \ "[0:v][1:v]overlay=enable='between=(t,5,20)':x=120+t*28:y=t*10[out]" \ -map "[out]" vids/imageslide.mp4
Simple Sliding Overlay Without Sound
Scrolling a Text Image Across a Videoffmpeg -i vids/short.mp4 -i scrolling-text.png -filter_complex \ "[0:v][1:v]overlay=enable='between=(t,3,30)':x=1220-t*60:y=50[out]" \ -map "[out]" vids/imagescroll.mp4