> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# setHideVideoMuted

> setHideVideoMuted method for the RoomSession class.

### setHideVideoMuted

* **setHideVideoMuted**(`value`): `Promise<void>`

Show or hide muted videos in the room layout. Members that have been muted via [videoMute](/docs/browser-sdk/v3/js/reference/video/room-session/video-mute) will not appear in the video stream, instead of appearing as a mute image, if this setting is enabled.

Muted videos are shown by default.

#### Parameters

Whether to hide muted videos in the room layout.

#### Returns

`Promise<void>`

#### Permissions

* `room.hide_video_muted`
* `room.show_video_muted`

You need to specify the permissions when [creating the Video Room Token](/docs/apis/rest/video/room-tokens/create-room-token) on the server side.

#### Example

```javascript
await roomSession.setHideVideoMuted(false);
```