VBR detection #1656
Unanswered
naanlizard
asked this question in
Ideas
VBR detection
#1656
Replies: 1 comment 7 replies
-
A method to detect VBR (Variable Bitrate) involves observing the characteristic of fluctuating bitrates over time. Unlike CBR (Constant Bitrate), where the bitrate remains constant, VBR shows significant variations in bitrate. Therefore, by monitoring the bitrate and identifying substantial fluctuations, one can detect VBR. However, this can be influenced by the encoder's implementation, its performance, or factors such as packet loss. Since these factors also affect video quality, it is a good idea to issue a warning like the one below: "You might be encoding in VBR mode, or the video quality is inconsistent." |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With the new API responses that include bitrate (configured and actual), would it be possible to programmatically detect whether a user is using VBR as their rate control?
I'd assume something like "if bitrate avg is significantly below configured average, VBR likely"
But I'm not sure how dropped frames would show here
This would be useful for informing users to switch to or away from VBR, we recommend it but others usually don't I think
Beta Was this translation helpful? Give feedback.
All reactions