[ Prev ] [ Index ] [ Next ]

Video Clipping

Created Thursday 22 October 2020

Clip the start of a video


In this example, the first 2 minutes and 45 seconds will be removed from the video file:

ffmpeg -ss 00:02:45.0 -i <infile>.mkv -c copy <outfile>.mkv

The original file remains unchanged, and the output file is not the clipped version of the original file.

Clip the end of a video