Created
May 17, 2018 13:58
-
-
Save lilithebowman/428cca4ad3d0507f14688e7421b7a2e2 to your computer and use it in GitHub Desktop.
Concatenate video files using ffmpeg
This file contains 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
@echo off | |
echo Add the list of files to concatenate to files.txt with "file " in front of the name. One per line. | |
ffmpeg -f concat -safe 0 -i mylist.txt -c copy concatenated.mp4 | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment