setAudioInputVolume

View as MarkdownOpen in Claude
1setAudioInputVolume(value): Promise<void>

Sets the server-side microphone volume on this participant’s bridged call leg. Applies a multiplier to the audio flowing through the mix engine (FreeSWITCH channel read volume) — changes what other participants hear, not what the local browser captures.

For local PC mic gain, use Call.setLocalMicrophoneGain instead.

Parameters

value
numberRequired

Volume level (0-100).

Returns

Promise<void>

Inherited from

Participant.setAudioInputVolume

Examples

1await selfParticipant.setAudioInputVolume(value);