Handbrake settings to convert MKV to MP4 while retaining the original quality

193,656

Solution 1

What's the problem with Handbrake?

When you're using Handbrake to convert from one container format to the other (i.e. MKV to MP4 in your case), Handbrake will re-encode the video. See also the respective feature request that would have enabled video passthrough:

Sorry, adding video passthrough is not planned. HandBrake is designed to be a video transcoder. It wasn't designed to allow passthrough.

So, anytime you're changing containers with Handbrake, your video is going to get re-encoded, which means it a) takes time and b) may introduce quality loss.

Do I have to re-encode? Couldn't I just swap the container?

Since passthrough is not possible, ask yourself: Do I need to re-encode? If you only want to change the container from MKV to MP4, you usually don't need to encode anything, you just change the "wrapping" around the video. This doesn't lose quality, and it'll be a much faster process.

You can swap containers easily with FFmpeg – you just have to tell it to copy the video and audio streams:

ffmpeg -i input.mkv -c copy -map 0 output.mp4

There are also tools like MP4Box which can also create MP4 containers — the same exists for MKV with MKVtoolnix.

However, there's a big caveat: this only works if the audio and video codecs are supported in the target (MP4) container, which is the case for H.264/H.265 and AAC, for example, but not for many others. Also, subtitle format support for MP4 is different from MKV, and actually quite restricted, so this command may fail.

If this command does not work, and if your input uses the wrong codecs for the output container, you will probably have to re-encode. In this case, the codecs will be adapted to the output container.

To understand why this is necessary, it's important to learn the difference between video codecs and containers. This will help you understand why changing containers works and why the containers MP4 and MKV have little to do with video codecs, actually.

Why is re-encoding bad, anyway?

You can (usually) not retain full quality when encoding a video that was already encoded. This is because the original has already been compressed by throwing away information, and by doing it again you're introducing generation loss.

Often, you want to re-encode video when for example its dimensions change, or you need a specific bit rate to squeeze your video stream into, or your original video uses a codec that you can't play for whatever reason.

So, if you load your MKV video into Handbrake, and re-encode it with x264, the H.264 encoder Handbrake uses, store it in an MP4 container, you are going to lose quality no matter what, unless you set the bitrate or quality factor so high that you won't (really) see the difference. But then, the file size will be bigger as well.

In the ideal case, you would convert the video to an uncompressed video, which won't lose you any quality, but give you files of a dozen Gigabytes in size, even for a few minutes of video material.

Okay, but I really have to re-encode!

If you really have to re-encode, make sure not to set an average bitrate, but choose a Constant Rate Factor, which is something like "constant quality". Just like "variable bit rate" for MP3: It will make sure to spend the bits on the video parts that need them and make the overall quality better — at the same file size.

Sane CRF values are from 19 to 24, where lower means "better". So, you could try with a Rate Factor of 19. Also, make sure to set the "High" profile, which enables the encoder to use all bells and whistles and optimize the quality for a given bit rate.

Solution 2

This works very well for me. Below is code to convert all .mkv to .mp4 files in windows.

  • You may need to add ffmpeg to your path. you can just put the full path to the ffmpeg executable, D:\apps\ffmpeg\bin\ffmpeg.exe
  • Download ffmpeg for windows here.
  • Usage: Drop a .mkv file onto it. It will do the whole directory.

Save in a file called convert.bat.

for %%a in ("*.mkv") do ffmpeg.exe -i "%%a" -vcodec copy -acodec copy "%%~na .mp4"
pause
Share:
193,656

Related videos on Youtube

orange
Author by

orange

Updated on September 18, 2022

Comments

  • orange
    orange almost 2 years

    I have a ton of MKV files I need to convert to MP4 and my chosen software is Handbrake.

    I'm stuck on which settings would be best for the conversion. I want to retain full quality. Do I just convert with the original settings and not change anything or is there any specific thing I need to change?

    • janot
      janot about 9 years
      Here is quite detailed guide on Handbrake's settings mattgadient.com/2013/06/12/…
    • oldboy
      oldboy almost 7 years
      i'm getting an error on some files (for mkv to mp4 and mp4 to mkv): Output file #0 does not contain any stream. Anybody have any idea what this means?
    • paq85
      paq85 almost 3 years
      You can use VCL Player to do this. File -> Convert/stream.
  • orange
    orange almost 12 years
    Thank you! It seems you are the only one who seems to care about this question and help me out, I followed your advice and seems the quality is same as the original! :)
  • Kit Johnson
    Kit Johnson over 8 years
    Works like a charm.
  • ski_squaw
    ski_squaw about 8 years
    For some mkv files this will fail with (Could not write header for output file...incorrect codec). Use ffprobe -i file.mkv to see what format the a/v is in, you will likely need to reecode with x264 video and aac/ac3 audio
  • davidtbernal
    davidtbernal about 7 years
    I put this in the folder with ffmpeg.exe and then changed it to for %%a in ("*.mkv") do %~dp0ffmpeg.exe -i "%%a" -vcodec copy -acodec copy "%%~na .mp4"
  • oldboy
    oldboy almost 7 years
    u 100% certain that rewrapping files doesn't cause quality loss??
  • oldboy
    oldboy almost 7 years
    i'm getting an error on some files (for mkv to mp4 and mp4 to mkv): Output file #0 does not contain any stream. Anybody have any idea what this means?
  • slhck
    slhck almost 7 years
    @Anthony Yes, rewrapping the file does not change the quality. About the error, I cannot tell you why exactly that would happen. You need to show the complete command-line output – ideally ask a new question and let me know.
  • Jonny
    Jonny over 6 years
    Unfortunately ffmpeg is buggy and fails to convert MTS containers with h264/aac to mp4 containers properly. MTS is used by my JVC cam corder.
  • Jonny
    Jonny over 6 years
    Note: I was able to fix the problem by changing for i in *.MTS; do ffmpeg -i "$i" -c:v copy -c:a copy "batchoutput/${i%.mts}.mp4"; done into for i in *.MTS; do ffmpeg -i "$i" -c:v copy -c:a ac3 "batchoutput/${i%.mts}.mp4"; done (using a batch script to put all .mts files into mp4 files in a subfolder). ffmpeg complained about frame size, however the error output is likely incorrect as overriding the audio codec fixes the problem. I don't think audio uses frame sizes :-P
  • slhck
    slhck over 6 years
    @Jonny Audio uses frames, but in another sense. It's hard to tell what exactly is the issue with your stream without seeing the full console output. Re-coding with AC-3 is perhaps not the best idea in terms of quality; do you want -c:a aac -b:a 128k instead?
  • BallpointBen
    BallpointBen about 6 years
    Just to be clear, Handbrake is not capable of merely changing the container format without reencoding?
  • slhck
    slhck about 6 years
    @BallpointBen Not possible, no: github.com/HandBrake/HandBrake/issues/…
  • Hashim Aziz
    Hashim Aziz over 5 years
    @slhck You should make the above clarification clearer in your answer, as the current answer seems to be saying two contrasting things, especially to someone who understands little of the specialised glossary of the field.
  • Hashim Aziz
    Hashim Aziz over 5 years
    Also to be clear, if I'm using Handbrake anyway to re-encode a video's audio, and since Handbrake doesn't allow video passthru, converting mp4 to mkv while I'm there will introduce no further loss?
  • slhck
    slhck over 5 years
    @Hashim I tried to clarify the post as requested. And regarding your question, since Handbrake does not allow passthrough, converting from MP4 to MKV will introduce quality loss. And it'll take a lot of time. Just do ffmpeg -i input.mp4 -c copy output.mkv and you should be fine.
  • Hashim Aziz
    Hashim Aziz over 5 years
    That wasn't my question. I'm confirming that if I'm re-encoding the audio of a video with Handbrake anyway (and therefore have to set a CRF, which will encode the video), is there any further loss in changing the MP4 container to MKV while I'm there? Or will the only loss in the video file result from the actual video and audio encoding of the file. In other words, does Handbrake have loss of quality that's inherent to changing the containers?
  • slhck
    slhck over 5 years
    @Hashim No, there is no loss inherent to changing containers, but because Handbrake cannot copy the video stream, it has to encode it again, which introduces loss (unless you set a really low CRF). The container storage itself is lossless, so whether you are using MKV or MP4 does not matter.