Am 05.01.2024 um 07:51 schrieb Ferdi Scholten:
I want to play a video in a video from a certain point. I understood I
could do something like:
     ffmpeg              \
       -i input1.mp4     \
       -i input2.mp4     \
       -filter_complex "
         [0:v][1:v] overlay=25:25:
         enable='between(t,8,20)'
       "                 \
       -pix_fmt yuv420p  \
       -c:a copy         \
       output.mp4

But this starts input2.mp4 from the start of input2.mp4 on the 8
second, for twelve seconds.
Is it possible to let input2.mp4 not start from second 0, but from
second 17?

Try putting -ss 17 between the two inputs.

or only before the second input.

Michael

_______________________________________________
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to