degradationRecoveryThreshold

View as MarkdownOpen in Claude
1get degradationRecoveryThreshold(): number
2set degradationRecoveryThreshold(value: number)

Bitrate in kbps above which video is automatically re-enabled.

Parameters

value
numberRequired

Outgoing bitrate (kbps) above which video is automatically re-enabled.

Examples

1// Read
2console.log(client.preferences.degradationRecoveryThreshold);
3
4// Write
5client.preferences.degradationRecoveryThreshold = 300;