Skip to content

Instantly share code, notes, and snippets.

@ntassone
Created September 17, 2014 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ntassone/3b614a5c9ec431382b17 to your computer and use it in GitHub Desktop.
Save ntassone/3b614a5c9ec431382b17 to your computer and use it in GitHub Desktop.
Split a video file with ffmpeg
# Split into two separate files at the 50 min mark.
ffmpeg -i original.mp4 -t 00:50:00 -c copy new-1.mp4 -ss 00:50:00 -c copy new-2.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment