Recently I re-encoded a H264 video to HEVC using FFmpeg and Intel hevc_qsv hardware acceleration and libx265. hevc_qsv results in higher sized video and libx265 results in 50% lower sized video.
I Googled h265 vs HEVC it says they are same. If they are same why so much difference in the results?
These are the command lines I used:
ffmpeg -i "%%a" -c:v libx265 -vtag hvc1 "newfiles\%%~na.mp4
ffmpeg -i "%%a" -c:v hevc_qsv -vtag hvc1 "newfiles%%~na.mp4