> 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.

## **Inherited from**

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`videoMuted$`](/docs/browser-sdk/v4/reference/participant#videomuted-1)

## videoMuted

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

Whether the participant's video is muted.

## **Inherited from**

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`videoMuted`](/docs/browser-sdk/v4/reference/participant#videomuted)

## **Examples**

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