Skip to content

Instantly share code, notes, and snippets.

@hawkapparel
Created January 21, 2019 03:23
Show Gist options
  • Save hawkapparel/ffba0d0150fa8d413ee56e9d9e96297c to your computer and use it in GitHub Desktop.
Save hawkapparel/ffba0d0150fa8d413ee56e9d9e96297c to your computer and use it in GitHub Desktop.
Convert MKV to MP4 in Linux DEBIAN 9
sudo apt-get update
sudo apt-get install ffmpeg
Confirm the installation
Now run the following command:
ffmpeg -version
comand:
ffmpeg -i my_movie.mkv -vcodec copy -acodec copy my_movie.mp4
References:
https://www.vultr.com/docs/how-to-install-ffmpeg-on-debian-8-or-9
https://solidfoundationwebdev.com/blog/posts/how-to-easily-convert-mkv-to-mp4-from-the-terminal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment