*** id: 917c5053-e239-4ba1-904f-3bcaed1bf2a3 title: setInputSensitivity slug: /js/reference/video/room-session-device/set-input-sensitivity description: setInputSensitivity method for the RoomSessionDevice class. max-toc-depth: 3 ---------------- ### setInputSensitivity ▸ **setInputSensitivity**(`params`): `Promise` Sets the input level at which the participant is identified as currently speaking. #### Parameters Configuration object for input sensitivity Desired sensitivity from 0 (lowest sensitivity, essentially muted) to 100 (highest sensitivity). The default value is 30. #### Returns `Promise` #### Permissions * `room.self.set_input_sensitivity` You need to specify the permissions when [creating the Video Room Token](/docs/apis/video/room-tokens/create-room-token) on the server side. #### Example ```javascript await roomdevice.setInputSensitivity({ value: 80 }); ```