Changes between Version 11 and Version 12 of Seeking
- Timestamp:
- Aug 23, 2013, 10:33:13 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Seeking
v11 v12 7 7 = Fast seeking = 8 8 9 (-ss parameter before -i) 9 The `-ss` parameter needs to be specified before `-i`: 10 10 11 11 {{{ 12 ffmpeg -ss 00:03:00 -i Underworld.Awakening.avi - vframes1 out1.jpg12 ffmpeg -ss 00:03:00 -i Underworld.Awakening.avi -frames:v 1 out1.jpg 13 13 }}} 14 14 15 15 [[Image(out1.jpg)]] 16 16 17 This example will produce 1 image frame (out1.jpg) somewhere around 3rd minute from the beginning of the movie. The input will be parsed '''using keyframes''', which is '''very fast'''. The drawback is that it will also finish the seeking at some keyframe, not necessarily located at specified time (00:03:00), so the seeking will not be as accurate as expected.17 This example will produce one image frame (out1.jpg) somewhere around the third minute from the beginning of the movie. The input will be parsed '''using keyframes''', which is '''very fast'''. The drawback is that it will also finish the seeking at some keyframe, not necessarily located at specified time (00:03:00), so the seeking will not be as accurate as expected. 18 18 19 19 = Accurate seeking = 20 20 21 (-ss parameter after -i) 21 The `-ss` parameter needs to be specified after `-i`: 22 22 23 23 {{{ 24 ffmpeg -i Underworld.Awakening.avi -ss 00:03:00 - vframes1 out2.jpg24 ffmpeg -i Underworld.Awakening.avi -ss 00:03:00 -frames:v 1 out2.jpg 25 25 }}} 26 26 27 27 [[Image(out2.jpg)]] 28 28 29 This example will also produce 1 image frame (out2.jpg) precisely at 3rd minute from the beginning of the movie.29 This example will also produce one image frame (out2.jpg) precisely at the third minute from the beginning of the movie. 30 30 31 31 ''Note the time difference on the clocks between the images out1.jpg and out2.jpg. The first one shows "00:02:05:05" and the second shows "00:02:05:06".'' 32 32 33 The input is parsed '''very slowly''', frame by frame. The advantage is that you'll get the frame at exactly 3rd minute, but the drawback is that it will take a lot of time until it finally reaches that time point. The bigger the seeking time is, the longer you will have to wait.33 Here, the input will be decoded until it reaches the position given by `-ss`. This will be done '''very slowly''', frame by frame. The advantage is that you'll get the frame at the third minute, but the drawback is that it will take a lot of time until it finally reaches that time point. The bigger the seeking time is, the longer you will have to wait. 34 34 35 35 = Fast and accurate seeking = 36 36 37 (-ss parameter before and after -i) 37 For this we specify the `-ss` parameter before and after `-i`: 38 38 39 39 {{{ 40 ffmpeg -ss 00:02:30 -i Underworld.Awakening.avi -ss 00:00:30 - vframes1 out3.jpg40 ffmpeg -ss 00:02:30 -i Underworld.Awakening.avi -ss 00:00:30 -frames:v 1 out3.jpg 41 41 }}} 42 42 43 43 [[Image(out3.jpg)]] 44 44 45 This approach is combining the best characteristics of both fast and accurate ways of seeking in FFmpeg. Shortly, we first seek very fast somewhere before the 3rd minute and then we slow down and seek frame by frame to the 3rd minute. This works because FFmpeg will first seek by keyframes, until it reaches at 00:02:30, when it will stop at the last keyframe found (somewhat before 00:02:30, depending on the [http://en.wikipedia.org/wiki/Group_of_pictures gop size]/keyframesinterval of the input) and then it will slowly seek the next 00:00:30 seconds to the desired time point. The result should be the same as in "Accurate seeking" section, only a lot faster.45 This approach is combining the best characteristics of both fast and accurate ways of seeking in ffmpeg. We first seek very fast somewhere before the third minute. Then we slow down and seek frame by frame to the third minute. This works because ffmpeg will first seek by keyframes, until it reaches 00:02:30. This is where it stops at the last keyframe found (somewhere before 00:02:30, depending on the [http://en.wikipedia.org/wiki/Group_of_pictures GOP size]/keyframe interval of the input) and then it will slowly seek the next 00:00:30 seconds to the desired time point. The result should be the same as in "Accurate seeking" section, only a lot faster. 46 46 47 47 ''Note that both out2.jpg and out3.jpg show the same time on the clock "00:02:05:06"'' 48 48 49 There is no general rule how to correctly set both time points for -ss options, because those depend on the keyframe interval used when the input was encoded. But, just for the purpose of some orientation, the x264 encoder uses the gopsize of 250 (which means 1 keyframe each 10 seconds if the input frame rate is 25 fps).49 There is no general rule on how to correctly set both time points for `-ss` options, because those depend on the keyframe interval used when the input was encoded. To give some orientation, the x264 encoder by default uses a GOP size of 250 (which means 1 keyframe each 10 seconds if the input frame rate is 25 fps). 50 50 51 51 = Notes = 52 52 53 == Cutting small section ==53 == Cutting small sections == 54 54 55 For instance to extract only a small segment in the middle of a movie, it can be used in combination with "-t" which specifies the duration, like -ss 60 -t 10 to capture from second 60 to 70. Or you can use the "-to" option to specify a outpoint, like -ss 60 -to 70 to capture from second 60 to 70. "-t" and "-to" are mutually exclusive and if you use both "-t"will be used.55 To extract only a small segment in the middle of a movie, it can be used in combination with `-t` which specifies the duration, like `-ss 60 -t 10` to capture from second 60 to 70. Or you can use the `-to` option to specify an out point, like `-ss 60 -to 70` to capture from second 60 to 70. `-t` and `-to` are mutually exclusive. If you use both, `-t` will be used. 56 56 57 If you cut with stream copy (-c copy) you need to use the [https://ffmpeg.org/ffmpeg-all.html#Format-Options "-avoid_negative_ts 1"] option if you want to use that segment with the [https://trac.ffmpeg.org/wiki/How%20to%20concatenate%20(join,%20merge)%20media%20files#demuxer concat demuxer] . 57 Note that if you specify `-ss` before `-i` only, the timestamps will be reset to zero, so `-t` and `-to` have the same effect: 58 {{{ 59 ffmpeg -ss 00:01:00 -i video.mp4 -to 00:02:00 -c copy cut.mp4 60 ffmpeg -i video.mp4 -ss 00:01:00 -to 00:02:00 -c copy cut.mp4 61 }}} 58 62 59 Example : 63 Here, the first command will cut from 00:01:00 to 00:03:00 (in the original), whereas the second command would cut from 00:01:00 to 00:02:00, as intended. 64 65 If you cut with stream copy (`-c copy`) you need to use the [https://ffmpeg.org/ffmpeg-all.html#Format-Options `-avoid_negative_ts 1`] option if you want to use that segment with the [https://trac.ffmpeg.org/wiki/How%20to%20concatenate%20(join,%20merge)%20media%20files#demuxer concat demuxer] . 66 67 Example: 60 68 {{{ 61 69 ffmpeg -ss 00:03:00 -i video.mp4 -t 60 -c copy -avoid_negative_ts 1 cut.mp4 … … 64 72 == Timestamp syntax == 65 73 66 Note that you can use t imestamp inputs like 00:02:30 or 150 (mean the same thing). Also if you use a fraction, like 02:30.05 this is interpreted at "5 100ths of a second" not as frame 5 (for instance 02:30.5 would be 2 minutes, 30 seconds, and a half a second).74 Note that you can use two different formats, 00:02:30 or 150, i.e. `[HH:MM:SS]` or just seconds. They mean the same thing. Also, if you use a fraction, like `02:30.05` this is interpreted as "5 100ths of a second" not as frame 5. For instance, `02:30.5` would be 2 minutes, 30 seconds, and a half a second. 67 75 68 == vcodec copy==76 == Doing a bitstream copy gives me a broken file? == 69 77 70 If you use -ss with "-vcodec copy" sometimes weird things can happen, since it's forced to only use/split on i-frames. For instance it might insert audio for 0.5s before the first video frame appears, so be careful!78 If you use `-ss` with `-c:v copy`, the resulting bitstream might end up being choppy, not playable, or out of sync with the audio stream, since ffmpeg is forced to only use/split on i-frames. 71 79 72 == multiple at one ==80 == Multiple cuts at once == 73 81 74 You can do do multiple splits with the same file , as well, see http://stackoverflow.com/questions/5651654/ffmpeg-how-to-split-video-efficiently/12939780#12939780 which may or may not save time/cpu.82 You can do do multiple splits with the same file as well, see [http://stackoverflow.com/questions/5651654/ffmpeg-how-to-split-video-efficiently How to split video efficiently], which may or may not save you time/CPU.
