[FFmpeg-user] Cut out middle of a video?

Lou lou at lrcd.com
Thu Dec 8 23:45:15 CET 2011


On Thu, 08 Dec 2011 16:58:23 -0500
"." <peace at aleksandrsolzhenitsyn.net> wrote:

> I have an mp4 that's 2 minutes long.
> 
> 
> - From the video I want to remove from 1 minute 10 seconds  until 1
> minute 50 seconds.
> 
> How do I do it?

ffmpeg -i input -ss 00:01:10.00 -t 00:00:40.00 -c copy output
or
ffmpeg -i input -ss 70 -t 40 -c copy output


More information about the ffmpeg-user mailing list