I have a video file of 30 minutes, but I want to extract a video from 00:09:23 to 00:25:33. I can define the startposition with -ss, but I couldn't find one for the end position. Any help please?
|
feedback
|
|
The other answer are partly right. However, to just extract a part of a video, and not re-encode it while doing so, you can't use the So, this would mean:
However, there's still one drawback. The video will be decoded until it reaches the position implied by For additional speed when doing this, you can supply the
If you have an edit list of in and out points, and want to convert these into in points with duration, you can use this Ruby script I wrote, which calculates the difference:
For example:
| |||
|
feedback
|
|
I use the following syntax to cut video with ffmpef:
-t is used to set the duration in seconds - you can't specify the end time but this should work for you. | |||
feedback
|
|
You can use this
Here you have to give duration of video. ie. 00:25:33-00:09:23 | |||
feedback
|