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

# inputSensitivity$

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

```ts
get inputSensitivity$(): Observable<number | undefined>
```

Observable of the **conference-only** microphone energy/gate sensitivity
level for this member. Routes through the conferencing mix engine and has
no effect on 1:1 WebRTC calls. Populated from `member.updated` events for
conference members.

##### See

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

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`inputSensitivity$`](/docs/browser-sdk/v4/reference/participant#inputsensitivity-1)

## inputSensitivity

```ts
get inputSensitivity(): number | undefined
```

Current **conference-only** microphone sensitivity/gate level, or
`undefined` if not set. Applies only to conference members.

#### Inherited from

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

## **Examples**

```ts
selfParticipant.inputSensitivity$.subscribe((inputSensitivity) => {
  console.log('inputSensitivity:', inputSensitivity);
});
```