audioMuted$

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

Observable indicating whether the participant’s audio is muted.

audioMuted

1get audioMuted(): boolean

Whether the participant’s audio is muted.

Examples

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