Skip to content

Instantly share code, notes, and snippets.

@feihong
Created December 31, 2015 00:03
Show Gist options
  • Save feihong/12c5ab957fabc6fac5eb to your computer and use it in GitHub Desktop.
Save feihong/12c5ab957fabc6fac5eb to your computer and use it in GitHub Desktop.
ffmpeg recipes

Copy the input video from 14:43 to 16:55 and output it to a file called cut.mp4

ffmpeg -i movie.mp4 -ss 00:14:43 -to 16:55  -acodec copy -vcodec copy -async 1 cut.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment