I'm trying to add overlays to an input video with ffmpeg that appear some time after the video starts.
The basic way to add an overlay is:
ffmpeg -i in.avi -vf "movie=overlay.avi [ovl]; [in][ovl] overlay" out.avi
But this adds the overlay video (or image) from the start of the input video until one of the videos ends.
I know how to offset the overlay video using movie=overlay.avi:seek_point=1.4
, but what about an offset on the input video?
I could always clip the video to the desired point, add overlay on the second clip, then stitch the two but that's not very efficient.