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

-i: input file

-ss: Seeks Start

-to: duration from start ( here 00:01:40) to end

-c copy: trim via stream copy (faster that re-encoding)