Skip to content

Instantly share code, notes, and snippets.

@jordanwesthoff
Created October 26, 2015 15:47
Show Gist options
  • Save jordanwesthoff/96f51ca7b8b08528f73a to your computer and use it in GitHub Desktop.
Save jordanwesthoff/96f51ca7b8b08528f73a to your computer and use it in GitHub Desktop.
{AVCONV} Batch convert Matroska to MP4 video
for f in *.mkv;
do avconv -i "$f" -codec copy "${f%.mkv}.mp4";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment