- May 2, 2022
- 59
- 12
- 8
Can you guys suggest to me how to convert Mkv files to mp4, without losing quality? I have dual audio in my Mkv files and want to keep them both in mp4 as well, your help would be much appreciated. Thanks In advance.
Can you guys suggest to me how to convert Mkv files to mp4, without losing quality? I have dual audio in my Mkv files and want to keep them both in mp4 as well, your help would be much appreciated. Thanks In advance.
Using handbrake it makes a file double of its size.Using ffmpeg
single file:
Code:ffmpeg -i media.mkv -c copy media.mp4
scans all subfolders and creates mp4 files in the parent folder:
Code:for /R %a in (*.mkv) DO ffmpeg -i "%a" -c copy "%~na.mp4"
...alternatively Handbrake
Using ffmpeg is the fastest way... as it does NOT re-encode the video. It only changes the container from mkv to mp4 and keeps the original file size.Using handbrake it makes a file double of its size.
Yes that’s normal , same as with ffmpegUsing handbrake it makes a file double of its size.
I didn't know that, I'll try.Using ffmpeg is the fastest way... as it does NOT re-encode the video. It only changes the container from mkv to mp4 and keeps the original file size.
Using ffmpeg is the fastest way... as it does NOT re-encode the video. It only changes the container from mkv to mp4 and keeps the original file size.
Doing it this way you run the risk of it not playing in all browsers or on mobile phonesI didn't know that, I'll try.
Ffmpeg will copy both audio and video map paths , as long as the dual audio is on the file already then it will workAll I need is my file to play dual audio, cant find a reliable source.