setAudioOutputVolume

View as MarkdownOpen in Claude
1setAudioOutputVolume(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

value
numberRequired

Volume level (0-100).

Returns

Promise<void>

Inherited from

Participant.setAudioOutputVolume

Examples

1await selfParticipant.setAudioOutputVolume(value);