Somebody else please test this on their PC and/or let me know if I fucked something up. If true encoding H264 video now officially takes longer to encode and wastes more storage space vs AV1.
This is from the Pedestrian Area 1080p25fps Y4M (~1GB): https://media.xiph.org/video/derf/y4m/
I compressed to ~130MB with x264 slow CRF 10 so very very very tiny hit to OG quality: https://marafile.cc/d/7e15af
Get-CimInstance -ClassName Win32_Processor | Select-Object Name, NumberOfCores, NumberOfLogicalProcessors
ffmpeg -v quiet -stats -i crf_10_h264.mkv -c:v libsvtav1 -crf 34 -y crf_34_av1.webm 2>&1 | Select-Object -Last 1 ;Write-Host ""
ffmpeg -i crf_34_av1.webm -i crf_10_h264.mkv -filter_complex libvmaf -f null - 2>&1 | Select-Object -Last 3 ;Write-Host ""
ffmpeg -v quiet -stats -i crf_10_h264.mkv -c:v libx264 -crf 24 -y crf_24_h264.mp4 2>&1 | Select-Object -Last 1 ;Write-Host ""
ffmpeg -i crf_24_h264.mp4 -i crf_10_h264.mkv -filter_complex libvmaf -f null - 2>&1 | Select-Object -Last 3 ;Write-Host ""
This is powershell and please rename the marafile.cc download to crf_10_h264.mkv