Skip to content

Instantly share code, notes, and snippets.

@richardsonlima
Created August 28, 2018 01:06
Show Gist options
  • Save richardsonlima/43dc68a25ba870f2843d105685f239d1 to your computer and use it in GitHub Desktop.
Save richardsonlima/43dc68a25ba870f2843d105685f239d1 to your computer and use it in GitHub Desktop.
Convert MKV to MP4
for f in *.mkv;do ffmpeg -i "$f" -c:v copy -c:a aac -b:a 256k "${f%mkv}mp4";done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment