Invalid duration specification with FFMPEG - what could be the reason?

8,124

Your duration format is the problem, you have used dot (.) instead of colon (:).

Duration may be a number in seconds, or in hh:mm:ss[.xxx] form.

Try -t 670 or -t 00:11:10 instead.

Share:
8,124

Related videos on Youtube

Admin
Author by

Admin

Updated on September 18, 2022

Comments

  • Admin
    Admin almost 2 years

    Using a command like:

    ffmpeg -i input.mp4 -c copy -t 00.11.10 -map 0 output.mp4
    

    I get:

    Invalid duration specification for t: 00.11.10
    

    Similar error for -to and -ss.

    What could be the reason for that?