Skip to content

Instantly share code, notes, and snippets.

@ignasbol
ignasbol / trim.md
Created September 27, 2021 21:21
Video fast trim

Quickly trim a video file without losing original settings

Option #1

ffmpeg -i <input_file> -ss <start_time> -to <end_time> -c:v copy -c:a copy <output_file>

Option #2

ffmpeg -i <input_file> -ss <start_time> -t <duration> -c:v copy -c:a copy <output_file>