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

# hideVideoMuted

> hideVideoMuted method for the RoomSession class.

* **hideVideoMuted**(): `Promise<void>`

Deprecated. Use [setHideVideoMuted](/docs/browser-sdk/v3/js/reference/video/room-session/set-hide-video-muted) instead.

Do not show muted videos in the room layout.

#### Returns

`Promise<void>`

#### Permissions

* `room.hide_video_muted`: to set the hand raise priority

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.hideVideoMuted();
```