videoMuted$

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

Observable indicating whether the participant’s video is muted.

videoMuted

get videoMuted(): boolean

Whether the participant’s video is muted.

Examples

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