Created
December 22, 2019 22:01
-
-
Save klinquist/8a6bc9ec65de1a3dab8f844ad4dbe634 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
for f in *.mp4 | |
do | |
echo "file $f">>concatlist.txt | |
done | |
ffmpeg -f concat -i concatlist.txt -c copy output.mp4 | |
rm concatlist.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment