setMinVideoBitrate
Description
Set a minimum video bitrate reachable through adaptive streaming.
When the bitrate is chosen through adaptive streaming (i.e., not enforced manually through
APIs such as setVideoBitrate
), the player will never switch to a video quality with a
bitrate lower than that value.
The exception being when no quality has a higher bitrate, in which case the maximum quality will always be chosen instead.
For example, if you want that video qualities chosen automatically never have a bitrate below 100 kilobits per second you can call:
player.setMinVideoBitrate(100000);
Any limit can be removed just by setting that value to 0
:
// remove video bitrate lower limit
player.setMinVideoBitrate(0);
The effect of this method is persisted from content to content. As such, it can even be called when no content is currently loaded.
Note that this only affects adaptive strategies. Forcing the bitrate manually (for example
by calling setVideoBitrate
) bypass this limit completely.
Syntax
player.setMinVideoBitrate(minBitrate);
-
arguments:
- minBitrate
number
: Lower video bitrate limit when adaptive streaming is enabled.
- minBitrate