Skip to content

Instantly share code, notes, and snippets.

@tommybobbins
Created August 13, 2017 19:05
Show Gist options
  • Save tommybobbins/2f3918380b4775d5759e5e2016225818 to your computer and use it in GitHub Desktop.
Save tommybobbins/2f3918380b4775d5759e5e2016225818 to your computer and use it in GitHub Desktop.
ffmpeg concat
#!/bin/bash
rm list_of_files.txt
for FILE in MOV*.avi
do
echo "file $FILE" >>list_of_files.txt
done
ffmpeg -f concat -i list_of_files.txt -c copy -y full.avi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment