For example:
If I convert video like this:
ffmpeg -i demo.avi -ss 00:00:05 -t 00:00:15 test.flv
it’s fast
ffmpeg -i demo.avi -ss 00:45:05 -t 00:00:15 test.flv
I have to wait a long time before it actually works.
Any way to fix that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The behavior of
-ssdepends upon where it is placed in the command: as an input or output option. As the ffmpeg documentation states:You can also use
-ssas an input option and an output option which may the provide both speed and (possibly increased) accuracy. See [FFmpeg-user] Reducing seek time when start time offset (-ss) is large and comments on Enhancing -ss option for more examples and details.