autoGain$

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

Observable indicating whether auto-gain control is enabled.

autoGain

get autoGain(): boolean

Whether automatic gain control is enabled.

Examples

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