> 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>`

#### Inherited from

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

## **Examples**

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