Skip to content

Instantly share code, notes, and snippets.

@vanduc1102
Last active August 29, 2015 14:22
Show Gist options
  • Save vanduc1102/adfaae0c7e1af6e8ff4c to your computer and use it in GitHub Desktop.
Save vanduc1102/adfaae0c7e1af6e8ff4c to your computer and use it in GitHub Desktop.
Cut Video in Ubuntu
##cut a video from 00:00:00 to 00:25:00
ffmpeg -ss 00:00:00 -t 00:25:00 -i big-055.mp4 -acodec copy -vcodec copy 055.mp4
## another command
ffmpeg -i in.mp4 -ss [start] -t [duration] -c:v copy -c:a copy out.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment