fraunhoferhhi/vvenc

Info for CQF

thx4ever opened this issue · 6 comments

Hi, can u show some examples How to use CQF mode?

Regards

@thx4ever I don't see any paramerters in --fullhelp yet. It would be for next version.

@adamjw24 Anyway I also want to ask: Does CQF work similarly to x264/x265 CRF?

CQF is similar to CRF in x265/x264, which means it is rate capped constant quality encoding.

Constant quality, i.e. --qp XY --qpa 1. Capped, i.e. --maxrate YZ. So thats the three params you use for CQF. --qpa 1 is the default, so can be skipped.

Best, Adam

CQF is similar to CRF in x265/x264, which means it is rate capped constant quality encoding.

Constant quality, i.e. --qp XY --qpa 1. Capped, i.e. --maxrate YZ. So thats the three params you use for CQF. --qpa 1 is the default, so can be skipped.

Best, Adam

You mean --qp -qpa 1 --MaxBitrate?

You mean --qp -qpa 1 --MaxBitrate?

No, I mean --qp A --qpa 1 --maxrate B, thats for vvencapp tho. For the vvencFFapp the params are different.

Im currently using vvencFFapp can u show me how to do it?

Regards

You mean --qp -qpa 1 --MaxBitrate?

For vvencFFapp, --QP=A -qpa 1 --MaxBitrate=B (-qpa 1 is the same as --PerceptQPA=1) seems the way to go. Mind that -qpa 1 is not the default, so this has to be specified.