Skip to content

Instantly share code, notes, and snippets.

@gerritjvv
Last active January 25, 2016 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gerritjvv/d83603278eef49cc08d2 to your computer and use it in GitHub Desktop.
Save gerritjvv/d83603278eef49cc08d2 to your computer and use it in GitHub Desktop.
Convert mkv to avi
for f in ./*.mkv; do
echo "convert $f"
ffmpeg -i "$f" -f avi -c:v mpeg4 -b:v 4000k -c:a libmp3lame -b:a 320k "${f%.*}.avi"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment