*** id: c7a5e745-2dc1-4cd4-993d-2b10e7bfac1f title: videoMute slug: /node/reference/video/room-session/video-mute description: videoMute method for the RoomSession class. max-toc-depth: 3 ---------------- ### videoMute * **videoMute**(`params`): `Promise` Puts the video of a given member on mute. Participants will see a mute image instead of the video stream. #### Parameters | Name | Type | Description | | :---------------- | :------- | :------------------------ | | `params` | `Object` | - | | `params.memberId` | `string` | Id of the member to mute. | #### Returns `Promise` #### Example ```typescript const id = "de550c0c-3fac-4efd-b06f-b5b8614b8966"; // you can get this from getMembers() await roomSession.videoMute({ memberId: id }); ```