Can we adding image(logo) to end of video?. I already found the way add logo 5second before video played with delayed the video?
Material: video file = af.flv ( format can be changed, avi or mp4 is okay )
image file = bg.png
ffmpeg -itsoffset 5 -i af.flv -r 25 -loop 1 -i bg.png -filter_complex "[1:v] fade=out:125:25:alpha=1 [intro]; [0:v][intro] overlay [v]" -map "[v]" -map 0:a -acodec copy out.mp4
Tried search on internet and read about documentation but no luck. Is there anyway adding Image(logo) 5 seconds after video END?