tandoni86 Asked: 2020-06-17 11:37:04 +0800 CST2020-06-17 11:37:04 +0800 CST 2020-06-17 11:37:04 +0800 CST How to easily convert an MKV video to an MP4 772 I would like to easily be able to convert a MKV video to MP4 video in Ubuntu. Is there any way I can easily do this at all? video convert mkv mp4 1 Answers Voted Best Answer Daniel M. 2020-06-17T11:40:04+08:002020-06-17T11:40:04+08:00 One easy way (requiring a terminal), is using FFMPEG. First, open a terminal and install FFMPEG with this command: sudo apt install ffmpeg Now all you have to do to convert your video is this one single command: ffmpeg -i <inputfile> <outputfile> For example, in your case: ffmpeg -i input.mkv output.mp4 FFMPEG will automatically detect/use the correct input and output formats. Conversion may take a few minutes based on length and frame rate of video.
One easy way (requiring a terminal), is using FFMPEG.
First, open a terminal and install FFMPEG with this command:
Now all you have to do to convert your video is this one single command:
For example, in your case:
FFMPEG will automatically detect/use the correct input and output formats.
Conversion may take a few minutes based on length and frame rate of video.