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

# lowbitrate$

> Observable indicating whether low-bitrate mode is active.

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

Observable indicating whether low-bitrate mode is active.

#### Inherited from

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

## lowbitrate

```ts
get lowbitrate(): boolean
```

Whether low-bitrate mode is active.

#### Inherited from

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

## **Examples**

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