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

# autoMuteVideoOnHidden

> Whether to auto-mute video when the tab becomes hidden.

```ts
get autoMuteVideoOnHidden(): boolean
set autoMuteVideoOnHidden(value: boolean)
```

Whether to auto-mute video when the tab becomes hidden.

## **Parameters**

If `true`, auto-mutes video when the tab or window becomes hidden.

## **Examples**

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

// Write
client.preferences.autoMuteVideoOnHidden = true;
```