Last active
January 28, 2020 11:13
-
-
Save maksimKorzh/30a314d7dac619b13f3a67e50b51a295 to your computer and use it in GitHub Desktop.
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 video from to | |
ffmpeg -ss 13:29 -i test.mkv -to 14:00 -c copy part2.mkv | |
// cat parts | |
mylist.txt: | |
# this is a comment | |
file '/home/maksim/Desktop/part1.mkv' | |
file '/home/maksim/Desktop/part2.mkv' | |
ffmpeg -f concat -safe 0 -i mylist.txt -c copy python.mkv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment