I installed the current ffmpeg build to access the -filter_complex option in the hope that you can use the video as an overlay on top of the static background image, which is larger than the video.
First, I just try to get the video overlay on top of the static background image to work with the following command (which does not work):
ffmpeg -loop 1 -i background.png -i overlay.mov -filter_complex overlay -shortest -y output.mov
output.mov has only one frame consisting of background.png file without video overlay.
How can I do this work and additionally add a specific coordinate location for the video in the background?
BONUS : with a special command, is it also possible to resize the overlay video to a larger size by placing it on top of the bg image?
source share