setMinAudioBitrate

Description

Set a minimum audio bitrate reachable through adaptive streaming.

When the bitrate is chosen through adaptive streaming (i.e., not enforced manually through APIs such as setAudioBitrate), the player will never switch to an audio 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 audio qualities chosen automatically never have a bitrate below 100 kilobits per second you can call:

player.setMinAudioBitrate(100000);

Any limit can be removed just by setting that value to 0:

// remove audio bitrate lower limit
player.setMinAudioBitrate(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 setAudioBitrate) bypass this limit completely.

In DirectFile mode (see loadVideo options), this method has no effect.

Syntax

player.setMinAudioBitrate(minBitrate);
  • arguments:

    1. minBitrate number: Lower audio bitrate limit when adaptive streaming is enabled.
Page List