Skip to content

Instantly share code, notes, and snippets.

@2KAbhishek
Created April 6, 2020 02:41
Show Gist options
  • Save 2KAbhishek/3872d644d418c3430660e3e31ceace2c to your computer and use it in GitHub Desktop.
Save 2KAbhishek/3872d644d418c3430660e3e31ceace2c to your computer and use it in GitHub Desktop.
Trim videos instantly
# With start time and duration
ffmpeg -ss $START -i $INFILE -c copy -map 0 -t $DURATION $OUTFILE
# With start time and end time
ffmpeg -ss $START -i $INFILE -c copy -map 0 -to $END $OUTFILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment