Value In Brief – by Abanoub Hanna
All You Need To Know Explained In Brief

How to cut a video based on start and end time using ffmpeg

Tutorials

This is the fastest command to cut the video in ffmpeg.

ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4

note: the above command trims your video in seconds.

explanation of command parts:

The timing format is: hh:mm:ss; it is hours : minutes : seconds.