December 10, 2017
Cut Video File with ffmpeg
Specify start time with -ss param and duration with -t param. It will generate cut.mp4 from movie.mp4 as a new file.
ffmpeg -i source.mp4 -ss 00:00:03 -t 00:00:08 -async 1 target.mp4
Specify start time with -ss param and duration with -t param. It will generate cut.mp4 from movie.mp4 as a new file.
ffmpeg -i source.mp4 -ss 00:00:03 -t 00:00:08 -async 1 target.mp4