Created
October 26, 2015 15:47
-
-
Save jordanwesthoff/96f51ca7b8b08528f73a to your computer and use it in GitHub Desktop.
{AVCONV} Batch convert Matroska to MP4 video
This file contains 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 *.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