*** id: b8f1b311-3471-45f1-bd2e-08fc3353ca04 title: videoUnmute slug: /node/reference/video/room-session/video-unmute description: videoUnmute method for the RoomSession class. max-toc-depth: 3 ---------------- ### videoUnmute * **videoUnmute**(`params`): `Promise` Unmutes the video of a given member if it had been previously muted. Participants will start seeing the video stream again. #### Parameters | Name | Type | Description | | :---------------- | :------- | :-------------------------- | | `params` | `Object` | - | | `params.memberId` | `string` | Id of the member to unmute. | #### Returns `Promise` #### Example ```typescript const id = "de550c0c-3fac-4efd-b06f-b5b8614b8966"; // you can get this from getMembers() await roomSession.videoUnmute({ memberId: id }); ```