Skip to content

Instantly share code, notes, and snippets.

@supermasita
Last active May 19, 2016 18:22
Show Gist options
  • Save supermasita/72b613fe5e4aebcdba54d8a1fd3ebccd to your computer and use it in GitHub Desktop.
Save supermasita/72b613fe5e4aebcdba54d8a1fd3ebccd to your computer and use it in GitHub Desktop.
FFMPEG or AVCONV - Example to trim (shorten) video without transcoding
# 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