jriker1
2nd August 2023, 14:52
I am converting some 1080p movies to HEVC. Didn't see this with my 4k encodes but basically I extract the content of the video and put it into an MP4 file. Then open it in Premiere and run NeatVideo to clean and slightly sharpen the video. Then export it as DNxHR HQ.
After that I run thru FFMpeg with basically this command:
ffmpeg.exe -i <input>.mxf -c:v libx265 -x265-params level=51:high-tier=1:repeat-headers=1:crf=20:no-sao=1:info=0:range=limited:vbv-bufsize=17500:keyint=24 -preset slow -pix_fmt yuv420p -sn -an <output>.hevc
Run the original source file against the resulting HEVC file (in MKV container) and get:
PSNR: 37.9802
SSIM: 0.9745
VMAF: 96.8085
The VMAF score is good but why the PSNR score low? Think usually it's recommended to be in the 40's? Tried lowering the CRF to 18 but didn't change much.
After that I run thru FFMpeg with basically this command:
ffmpeg.exe -i <input>.mxf -c:v libx265 -x265-params level=51:high-tier=1:repeat-headers=1:crf=20:no-sao=1:info=0:range=limited:vbv-bufsize=17500:keyint=24 -preset slow -pix_fmt yuv420p -sn -an <output>.hevc
Run the original source file against the resulting HEVC file (in MKV container) and get:
PSNR: 37.9802
SSIM: 0.9745
VMAF: 96.8085
The VMAF score is good but why the PSNR score low? Think usually it's recommended to be in the 40's? Tried lowering the CRF to 18 but didn't change much.