Is there an output bit rate limit for VVenc? #190
-
I am testing VVC performance in the content production environment with VVenc. The problem is that HD video (422, 8 bits, 25 fps) does not produce a bit rate output greater than 250 Mbps for high quality testing. The output stream did not come out at 220 Mbps and came out at about 140 Mbps. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
We do have some problems with RC and high bit-rates, so this might be an related issue, alas it is more present in single pass encoding. Some of those problems have been resolved in https://github.com/fraunhoferhhi/vvenc/tags/v1.6.0-rc1. Additionally, our RC is mostly customized for random-access coding, the all-intra (AI) scenario has not been tested for a long time. As a workaround, you might try setting your For now I am afraid, I cannot give you a satisfying answer. That's an application outside of the main scope of VVenCs functionalities, thus you are using it at your own risk for now. We might have a look at some point, especially into RC+AI, but the application you described might never become a first-order priority. |
Beta Was this translation helpful? Give feedback.
We do have some problems with RC and high bit-rates, so this might be an related issue, alas it is more present in single pass encoding. Some of those problems have been resolved in https://github.com/fraunhoferhhi/vvenc/tags/v1.6.0-rc1. Additionally, our RC is mostly customized for random-access coding, the all-intra (AI) scenario has not been tested for a long time.
As a workaround, you might try setting your
TargetBitrate
higher or using fix-QP with aQP
of 10 or similar, but this would require some trial-and-error until you can reach the desired rate.For now I am afraid, I cannot give you a satisfying answer. That's an application outside of the main scope of VVenCs functionalities, …