videoMuted$

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

Observable indicating whether the participant’s video is muted.

Inherited from

Participant.videoMuted$

videoMuted

get videoMuted(): boolean

Whether the participant’s video is muted.

Inherited from

Participant.videoMuted

Examples

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