videoMuted$

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

Observable indicating whether the participant’s video is muted.

videoMuted

1get videoMuted(): boolean

Whether the participant’s video is muted.

Examples

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