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

# toggleMuteVideo

> Toggles the participant's video mute state.

```ts
toggleMuteVideo(): Promise<void>
```

Toggles the participant's video mute state.

## **Returns**

`Promise<void>`

## **Examples**

```ts
await participant.toggleMuteVideo();
```

## **See**

* [`videoMuted$`](/docs/browser-sdk/v4/reference/participant/video-muted\$) — reactive state pair.
* [`muteVideo`](/docs/browser-sdk/v4/reference/participant/mute-video) / [`unmuteVideo`](/docs/browser-sdk/v4/reference/participant/unmute-video) — force a specific state.
* Gated by [`SelfCapabilities.self.muteVideo`](/docs/browser-sdk/v4/reference/self-capabilities/self\$).