What H.264/H.265 video compression parameters provide DVD-equivalent quality with better compression

dvdffmpegh.264h.265video conversion

I have got a box of DVD video disks that I seek to get rid of while I'd like to keep the videos by converting them into MP4 files to store them on a hard drive.

Considering superiority of the modern H.264 AVC and H.265 HEVC compression algorithms over the DVD-standard MPEG2 I hope to save hard drive space by compressing the video while saving ~99% of the DVD original quality.

What

  • H.264 (FFMPEG + libx264) compression parameters
  • H.265 (FFMPEG + libx265) compression parameters

should I use to achieve my goal?

By parameters I mean the CBR/CRF values, the preset (no veryslow/placebo please), flags etc.

PS: I'd prefer to constraint the case with using -pix_fmt yuv420p and -profile:v baseline -level 3.0 to ensure the file plays OK on all the devices including old devices relying on old hardware decoder chips. Using somewhat increased I-frames frequency (using the -g parameter) is also desirable to facilitate low-speed and high-latency media usage.

For HEVC, I'd as well prefer using parameters that would ensure smooth hardware-accelerated playback on devices that support it but I don't mean to focus on this constraint as I haven't seen any devices offering hardware-accelerated H.265 decoding at all yet.

Best Answer

Note that for this, you should always use the latest ffmpeg version, and preferably compile it yourself. This gives you access to the most recent libx265 and libfdk-aac for audio encoding.

Also, the data rate savings will be quite drastic if you're going from a ~10 MBit/s DVD to around 1–2 MBit/s for H.264 video and 0.5–1 MBit/s for H.265 video. Changing the quality in the below steps may influence the bitrates, but still the data reduction should be significant.

H.264

For the quality / rate control, you want to use CRF mode in libx264 rather than a constant bitrate. Using CRF ensures that an average quality is preserved, independent of the original video resolution or its complexity. Constant bitrate is only really useful if you're constrained by the transmission medium (e.g. hard drive speed, Internet throughput).

Choosing the CRF value is the tricky part. It requires you to look at the output. The default for libx264 (23) offers a quite good tradeoff between size and quality. But given that your original source is already compressed (and not with a very good quality compared to Blu-rays), you may want to change the CRF to be a little lower, such as 20. This will increase needed bitrate by about a third.

Choose the preset according to how long you want to wait. slow seems like a good value here.

ffmpeg -i input \
-c:v libx264 -crf 20 -pix_fmt yuv420p \
-x264-params keyint=240:min-keyint=20 \
-preset:v slow -profile:v baseline -level 3.0 \
-c:a libfdk_aac -vbr 4 \
output.mp4

The built-in ffmpeg AAC encoder can be used if libfdk-aac is not available. Use -c:a aac -strict experimental -b:a 128k instead of -c:a libfdk_aac -vbr 4.

H.265

Research suggests that using HEVC will lead to up to 74% bitrate saving compared to H.264. This is based on subjective viewing data of Ultra-HD sequences. Of course, it depends on the temporal complexity of the source content, and the amount of data saved will not be as high for hard to code sequences. Either way you can safely say that 50% data reduction is absolutely possible.

The default CRF for libx265 is 28. Using the same source content, it results in about half the bitrate compared to libx264 at CRF 23. This is irrespective of the actual bitrate, i.e., if the H.264 version takes 1.5 MBit/s, then H.265 will use around 750 kBit/s, but it's 750 kBit/s vs. 350 kBit/s for another sequence. I ran it on a couple of sequences at DVD-PAL resolution and was not able to tell the difference in terms of quality.

ffmpeg -i input \
-c:v libx265 -pix_fmt yuv420p \
-x265-params crf=28:keyint=240:min-keyint=20 \
-preset:v slow \
-c:a libfdk_aac -vbr 4 \
output.mp4

For more information, here are the relevant resources:

Related Question