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

# setAudioInputSensitivity

> Adjusts the conference-only microphone energy gate / sensitivity level for this member.

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

Adjusts the **conference-only** microphone energy gate / sensitivity level
for this member. Routes through the conferencing mix engine
(`signalwire.conferencing member.set_input_sensitivity`) and has no effect
on 1:1 WebRTC calls — for those, use browser audio constraints via
Call.setNoiseSuppression / Call.setAutoGainControl.

This is **not** a local PC mic gain control; it only changes how the
server-side mixer decides to open the mic gate on this participant.

## **Parameters**

Sensitivity level as understood by the conference engine (integer, larger values are more sensitive).

## **Returns**

`Promise<void>`

#### Inherited from

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

## **Examples**

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