*** id: 2673aaa2-1dac-4f3d-aa37-711265dcd861 title: setInputSensitivity slug: /js/reference/video/room-session-screen-share/set-input-sensitivity description: setInputSensitivity method for the RoomSessionScreenShare 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. The default value is 30 and the scale goes from 0 (lowest sensitivity, essentially muted) to 100 (highest sensitivity). #### 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 }); ```