autoGain$

View as MarkdownOpen in Claude
1get autoGain$(): Observable<boolean | undefined>

Observable indicating whether auto-gain control is enabled.

autoGain

1get autoGain(): boolean

Whether automatic gain control is enabled.

Examples

1participant.autoGain$.subscribe((autoGain) => {
2 console.log('autoGain:', autoGain);
3});