unlockVideoRepresentations / unlockAudioRepresentations
Description
Disable a lock previously set respectively with
the lockVideoRepresentations or the lockAudioRepresentations
methods.
Without arguments, it unlocks locked Representation for the current
Period.
You can also unlock Representations for any Period by providing its id property as
argument.
// Example: unlocking video Representations for the first Period
const periods = rxPlayer.getAvailablePeriods();
rxPlayer.unlockVideoRepresentations(periods[0].id);
Syntax
// Unlock video Representations for the current Period
player.unlockVideoRepresentations();
// Unlock audio Representations for the current Period
player.unlockAudioRepresentations();
// Unlock video Representations for a specific Period
player.unlockVideoRepresentations(periodId);
// Unlock audio Representations for a specific Period
player.unlockAudioRepresentations(periodId);
-
arguments:
- periodId
string|undefined: Theidof the Period for which you want to get its video or audio Representations unlock. If not defined, it will apply to the currently-playing Period.
- periodId