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

# audioMuted$

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

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

Observable indicating whether the participant's audio is muted.

#### Inherited from

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

## audioMuted

```ts
get audioMuted(): boolean
```

Whether the participant's audio is muted.

#### Inherited from

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

## **Examples**

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