Created
January 21, 2019 03:23
-
-
Save hawkapparel/ffba0d0150fa8d413ee56e9d9e96297c to your computer and use it in GitHub Desktop.
Convert MKV to MP4 in Linux DEBIAN 9
This file contains hidden or 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
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