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

# degradationBitrateThreshold

> Bitrate in kbps below which video is automatically disabled.

```ts
get degradationBitrateThreshold(): number
set degradationBitrateThreshold(value: number)
```

Bitrate in kbps below which video is automatically disabled.

## **Parameters**

Outgoing bitrate (bps) below which the SDK degrades the call quality.

## **Examples**

```ts
// Read
console.log(client.preferences.degradationBitrateThreshold);

// Write
client.preferences.degradationBitrateThreshold = 1;
```