Overlay a video on another video at specific time with FFmpeg
问题 I am trying to overlay a video with another video. I followed the original command OP posted here. And it works, but it overlays the video from time 0: ffmpeg -i 720480.mp4 -i sdbug.mov -filter_complex "[0:0][1:0]overlay[out]" -shortest -map [out] -map 0:1 -pix_fmt yuv420p -c:a copy -c:v libx264 -crf 18 new.mp4 I tried the correct answer to specify a time, but it is not working for me: 1) the overlay starts at around second 12 , and 2) video is not played after the overlay is finished. ffmpeg