There are two ways how to split video files by ffmpeg. The first one is good in itself, more than that - it is faster, but sometimes creates output files with certain flaws. So for those cases there is the second way of splitting video files: it is considerably slower, the output files are bigger, but it seems they are always of the same quality level as input files used.качаем:
Way 1:
Way 2:ffmpeg -ss <start> -i in1.avi -t <duration> -c copy out1.avi
ffmpeg -ss <start> -i in1.avi -t <duration> out1.avi
Examples:
<start>
– the beginning of the part of a video ffmpeg is to cut out. Format:00:00:00.0000
, meaning hours:minutes:seconds:milliseconds.<duration>
– the duration of the part of a video ffmpeg is to cut out. Same format as above.
ffmpeg cuts out a part of the video file starting from 1 hour 19 minutes 0 seconds. The duration of the video sequence cut out is 5 minutes 0 seconds.ffmpeg -ss 01:19:00 -i in1.avi -t 00:05:00 -c copy out1.avi ffmpeg -ss 01:19:00 -i in1.avi -t 00:05:00 out1.avi
http://ffmpeg.org/download.html
еще!!:
http://trac.ffmpeg.org/wiki/Seeking
источник
Комментариев нет:
Отправить комментарий