Skip to content

Instantly share code, notes, and snippets.

@ipha
Created November 7, 2019 22:59
Show Gist options
  • Save ipha/6fa3a851c2590b6628c3aa747ed04719 to your computer and use it in GitHub Desktop.
Save ipha/6fa3a851c2590b6628c3aa747ed04719 to your computer and use it in GitHub Desktop.
#!/bin/bash
for dir in "$@"; do
for f in "$dir"/*; do
echo "file '$f'" >> "$dir".list
done
ffmpeg -f concat -safe 0 -i "$dir".list -c copy "$dir".mkv
rm "$dir".list
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment