Skip to content

Instantly share code, notes, and snippets.

@pbuckley4192
Last active October 2, 2017 14:43
Show Gist options
  • Save pbuckley4192/5f5be15db4a08ead1fa97c09ae8867a3 to your computer and use it in GitHub Desktop.
Save pbuckley4192/5f5be15db4a08ead1fa97c09ae8867a3 to your computer and use it in GitHub Desktop.
Convert MKV to MP4
sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
sudo apt-get install ffmpeg
sudo apt-get install frei0r-plugins
for i in *mkv; do ffmpeg -i "$i" -vcodec copy -acodec copy "${i%.mkv}.mp4"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment