Using RTX 5070 Driver: 572.83
Command:
ffmpeg.exe -i src.264 -c:v av1_nvenc -rc_mode CQP -qp 50 -i_qfactor 1 -b_qfactor 1 -i_qoffset -25 -b_qoffset 5 -bf 2 -o output.ivf
When using -bf 2
with the AV1 encoder in FFmpeg, I expect the B-frames to have a different quantization value than P-frames, but they all appear to be quantized similarly, with the output being:
25 / 55 / 55 / 55 / 55 / 55 / 55 / 55 / … / 50
However, the expected output should be:
25 / 55 / 55 / 50 / 55 / 55 / 50 / 55 / 55 … / 50