Last active
May 19, 2016 18:22
-
-
Save supermasita/72b613fe5e4aebcdba54d8a1fd3ebccd to your computer and use it in GitHub Desktop.
FFMPEG or AVCONV - Example to trim (shorten) video without transcoding
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
# Valid for FFMPEG or AVCONV | |
# "-ss" : start | |
# "-t" : end | |
avconv -i input.flv -ss 00:00:00 -t 00:10:00 -c copy output.flv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment