audioMuted$

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

Observable indicating whether the participant’s audio is muted.

Inherited from

Participant.audioMuted$

audioMuted

get audioMuted(): boolean

Whether the participant’s audio is muted.

Inherited from

Participant.audioMuted

Examples

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