audioMuted$

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

Observable indicating whether the participant’s audio is muted.

audioMuted

get audioMuted(): boolean

Whether the participant’s audio is muted.

Examples

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