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

# degradationRecoveryThreshold

> Bitrate in kbps above which video is automatically re-enabled.

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

Bitrate in kbps above which video is automatically re-enabled.

## **Parameters**

Outgoing bitrate (bps) above which the SDK restores full quality.

## **Examples**

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

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