Last active
August 29, 2015 14:22
-
-
Save vanduc1102/adfaae0c7e1af6e8ff4c to your computer and use it in GitHub Desktop.
Cut Video in Ubuntu
This file contains hidden or 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
##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