Last active
August 24, 2020 04:34
-
-
Save multidis/1c4235cb8481e660fe52fd20e84f6d8d to your computer and use it in GitHub Desktop.
Cut a portion of video file by timestamps without re-encoding.
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
## https://superuser.com/a/377407 | |
## starting second (7) to ending timestamp (06:05:00) | |
ffmpeg -ss 7 -i input.mkv -to 06:05:00 -c copy output.mkv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment