Created
April 6, 2020 02:41
-
-
Save 2KAbhishek/3872d644d418c3430660e3e31ceace2c to your computer and use it in GitHub Desktop.
Trim videos instantly
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
# With start time and duration | |
ffmpeg -ss $START -i $INFILE -c copy -map 0 -t $DURATION $OUTFILE | |
# With start time and end time | |
ffmpeg -ss $START -i $INFILE -c copy -map 0 -to $END $OUTFILE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment