Jitsi Meet supports virtual background effects including background blur and full image replacement with built-in or custom images. All background processing runs locally in the browser using TensorFlow.js — your raw video feed never leaves your device. This makes the feature privacy-friendly and independent of any server-side infrastructure.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/jitsi/jitsi-meet/llms.txt
Use this file to discover all available pages before exploring further.
Background Types
Blur
Applies a strong Gaussian blur to your background, keeping you in sharp focus. Ideal for hiding messy or private spaces without using a custom image.
Virtual Image
Replaces your background with a built-in image (office, beach, etc.) or a custom base64-encoded image you supply. Uses a segmentation model to separate you from your background.
None (Disabled)
Removes any active background effect and reverts to your raw camera feed. Use this to restore full performance if background effects are causing frame rate issues.
Browser Support
Virtual backgrounds require a Chromium-based browser (Chrome 79+, Edge 79+, Brave) or Firefox with WebGL enabled. The feature is not available in Safari or on most mobile browsers due to limitations with WebGL and the required machine learning APIs. The Jitsi Electron desktop app supports virtual backgrounds on all platforms. If a participant’s browser does not support the required APIs, the virtual background option will be hidden from the UI automatically.
IFrame API Control
Use thesetVirtualBackground command to programmatically enable or disable a custom image background for the local participant. The command takes a boolean enabled flag and a base64-encoded image string.
| Parameter | Type | Description |
|---|---|---|
enabled | boolean | true to enable the background effect, false to disable it |
backgroundImage | string | Base64-encoded image string to use as the background. Pass an empty string when disabling. |
Enable / Disable in config.js
Performance tips for virtual backgrounds
Performance tips for virtual backgrounds
- Virtual backgrounds are computationally expensive. On older or mobile-class hardware, enabling blur can reduce frame rates noticeably.
- If participants report performance issues, recommend they use a static image background rather than blur, as image replacement is generally lighter on CPU.
- You can disable the feature for all participants by setting
disableVirtualBackground: trueinconfig.js. - The segmentation model is downloaded on first use and cached by the browser — the initial load may take a few seconds on slower connections.
