d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Graphic Design > Overlay Images On Video
Add Reply New Topic New Poll
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Jun 6 2015 09:31am
i have a video of a blindfold chess game



i would like to overlay the board WITH pieces into the video after the fact. maybe on the right side of the vid. i was thinking i could get a PNG of the images i want, and the timestamps of when to show it. what's the best way to do it on linux?

This post was edited by carteblanche on Jun 6 2015 09:32am
Member
Posts: 3,233
Joined: May 4 2013
Gold: 1,600.00
Jun 6 2015 10:10am
ffmpeg like this?

Code

ffmpeg -i input.mp4 -i image.png \
-filter_complex "[0:v][1:v] overlay=25:25:enable='between(t,0,20)'" \
-pix_fmt yuv420p -c:a copy \
output.mp4


http://video.stackexchange.com/questions/12105/add-an-image-in-front-of-video-using-ffmpeg
Go Back To Graphic Design Topic List
Add Reply New Topic New Poll