Skip to content

Instantly share code, notes, and snippets.

@klinquist
Created December 22, 2019 22:01
Show Gist options
  • Save klinquist/8a6bc9ec65de1a3dab8f844ad4dbe634 to your computer and use it in GitHub Desktop.
Save klinquist/8a6bc9ec65de1a3dab8f844ad4dbe634 to your computer and use it in GitHub Desktop.
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