> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# videoMuted$

> Observable indicating whether the participant's video is muted.

```ts
get videoMuted$(): Observable<boolean | undefined>
```

Observable indicating whether the participant's video is muted.

## videoMuted

```ts
get videoMuted(): boolean
```

Whether the participant's video is muted.

## **Examples**

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