Created
January 2, 2018 16:39
-
-
Save greencoder/727535aeb75ed46d15a1d6a1330c0493 to your computer and use it in GitHub Desktop.
Joining Multiple Files with FFMpeg
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
# List each file in order | |
file '/path/to/file1.mov' | |
file '/path/to/file2.mov' | |
file '/path/to/file3.mov' |
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
ffmpeg -f concat -safe 0 -i files.txt -c copy output.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment