Created
September 17, 2014 22:24
-
-
Save ntassone/3b614a5c9ec431382b17 to your computer and use it in GitHub Desktop.
Split a video file with ffmpeg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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