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

# setAudioOutputVolume

> Sets the server-side speaker volume on this participant's bridged call leg (FreeSWITCH channel write volume) — what this participant hears from the mix before it reaches their client.

```ts
setAudioOutputVolume(value): Promise<void>
```

Sets the **server-side** speaker volume on this participant's bridged call
leg (FreeSWITCH channel write volume) — what this participant hears from
the mix before it reaches their client.

For local playback volume (the `<audio>` element the consumer attaches
`remoteStream` to), set `audioElement.volume` directly in the consumer's
code.

## **Parameters**

Volume level (0-100).

## **Returns**

`Promise<void>`

## **Examples**

```ts
await participant.setAudioOutputVolume(value);
```

## **See**

* [`outputVolume$`](/docs/browser-sdk/v4/reference/participant/output-volume\$) — reactive state pair.
* Gated by [`SelfCapabilities.self.speakerVolume`](/docs/browser-sdk/v4/reference/self-capabilities/self\$).