autoGain$

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

Observable indicating whether auto-gain control is enabled.

Inherited from

Participant.autoGain$

autoGain

get autoGain(): boolean

Whether automatic gain control is enabled.

Inherited from

Participant.autoGain

Examples

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