*** id: 33b9ba79-81d8-4c0b-bb25-0493295f02a1 title: setInputSensitivity slug: /node/reference/video/room-session/set-input-sensitivity description: setInputSensitivity method for the RoomSession class. max-toc-depth: 3 ---------------- ### setInputSensitivity * **setInputSensitivity**(`params`): `Promise` Sets the input level at which the participant is identified as currently speaking. #### Parameters | Name | Type | Description | | :---------------- | :------- | :------------------------------------------------------------------------------------------------------------------------ | | `params` | `Object` | - | | `params.memberId` | `string` | Id of the member to affect. | | `params.value` | `number` | Desired sensitivity from 0 (lowest sensitivity, essentially muted) to 100 (highest sensitivity). The default value is 30. | #### Returns `Promise` #### Example ```typescript const id = "de550c0c-3fac-4efd-b06f-b5b8614b8966"; // you can get this from getMembers() await roomSession.setInputSensitivity({ memberId: id, value: 80 }); ```