Created
October 21, 2020 15:16
-
-
Save robflaherty/bf25af067a46833c30c095d11830d857 to your computer and use it in GitHub Desktop.
Concat all videos in folder
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
for f in *.mp4 ; do echo file \'$f\' >> list.txt; done && ffmpeg -f concat -safe 0 -i list.txt -c copy stitched-video.mp4 && rm list.txt | |
# https://stackoverflow.com/questions/28922352/how-can-i-merge-all-the-videos-in-a-folder-to-make-a-single-video-file-using-ffm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment