| name | video-sdk-web |
| description | Zoom Video SDK for Web - JavaScript/TypeScript integration for browser-based video sessions, real-time communication, screen sharing, recording, and live transcription |
| user-invocable | false |
| triggers | ["video sdk web","custom video web","attachvideo","peer-video-state-change","web videosdk"] |
Zoom Video SDK - Web Development
Expert guidance for developing with the Zoom Video SDK on Web. This SDK enables custom video applications in the browser with real-time video/audio, screen sharing, cloud recording, live streaming, chat, and live transcription.
This skill is for custom video sessions, not embedded Zoom meetings.
If the user wants a custom UI for a real Zoom meeting, route to
../../meeting-sdk/web/component-view/SKILL.md.
Official Documentation: https://developers.zoom.us/docs/video-sdk/web/
API Reference: https://marketplacefront.zoom.us/sdk/custom/web/modules.html
Sample Repository: https://github.com/zoom/videosdk-web-sample
Quick Links
New to Video SDK? Follow this path:
- SDK Architecture Pattern - Universal 3-step pattern for ANY feature
- Session Join Pattern - Complete working code to join a session
- Video Rendering - Display video with attachVideo()
- Event Handling - Required events for video/audio
Reference:
Having issues?
- Video not showing → Video Rendering (use attachVideo, not renderVideo)
- getMediaStream() returns undefined → Call AFTER join() completes
- Quick diagnostics → Common Issues
SDK Overview
The Zoom Video SDK for Web is a JavaScript library that provides:
- Session Management: Join/leave video SDK sessions
- Video/Audio: Start/stop camera and microphone
- Screen Sharing: Share screens or browser tabs
- Cloud Recording: Record sessions to Zoom cloud
- Live Streaming: Stream to RTMP endpoints
- Chat: In-session messaging
- Command Channel: Custom command messaging
- Live Transcription: Real-time speech-to-text
- Subsessions: Breakout room support
- Whiteboard: Collaborative whiteboard features
- Virtual Background: Blur or custom image backgrounds
Prerequisites
System Requirements
- Modern Browser: Chrome 80+, Firefox 75+, Safari 14+, Edge 80+
- Video SDK Credentials: SDK Key and Secret from Marketplace
- JWT Token: Server-side generated signature
Browser Feature Requirements
const compatibility = ZoomVideo.checkSystemRequirements();
console.log('Audio:', compatibility.audio);
console.log('Video:', compatibility.video);
console.log('Screen:', compatibility.screen);
const features = ZoomVideo.checkFeatureRequirements();
console.log('Supported:', features.supportFeatures);
console.log('Unsupported:', features.unSupportFeatures);
Optional Pre-Join Diagnostics (Recommended for Reliability)
Use Probe SDK as a readiness gate before client.join(...) when you need to reduce failed starts:
- Run diagnostics with ../../probe-sdk/SKILL.md.
- Evaluate policy (
allow, warn, block).
- Start Video SDK join only when policy allows.
Cross-skill flow: ../../general/use-cases/probe-sdk-preflight-readiness-gate.md
Installation
NPM (Recommended)
npm install @zoom/videosdk
import ZoomVideo from '@zoom/videosdk';
CDN (Fallback Strategy Recommended)
Note: Some networks/ad blockers can block source.zoom.us. If you see flaky loads, first try allowlisting the domain in your environment. If needed, consider a fallback (mirror/self-host) only if it's permitted for your use case and you can keep versions in sync.
curl "https://source.zoom.us/videosdk/zoom-video-2.3.12.min.js" -o public/js/zoom-video-sdk.min.js
<script src="js/zoom-video-sdk.min.js"></script>
const ZoomVideo = WebVideoSDK.default;
Quick Start
import ZoomVideo from '@zoom/videosdk';
const client = ZoomVideo.createClient();
await client.init('en-US', 'Global', { patchJsMedia: true });
await client.join(topic, signature, userName, password);
const stream = client.getMediaStream();
await stream.startVideo();
await stream.startAudio();
const videoElement = await stream.attachVideo(userId, VideoQuality.Video_360P);
document.getElementById('video-container').appendChild(videoElement);
SDK Lifecycle (CRITICAL ORDER)
The SDK has a strict lifecycle. Violating it causes silent failures.
1. Create client: client = ZoomVideo.createClient()
2. Initialize: await client.init('en-US', 'Global', options)
3. Join session: await client.join(topic, signature, userName, password)
4. Get stream: stream = client.getMediaStream() ← ONLY AFTER JOIN
5. Start media: await stream.startVideo() / await stream.startAudio()
Common Mistake:
const stream = client.getMediaStream();
await client.join(...);
await client.join(...);
const stream = client.getMediaStream();
Critical Gotchas and Best Practices
getMediaStream() ONLY Works After join()
The #1 issue that causes video/audio to fail:
const stream = client.getMediaStream();
await client.join(...);
await client.join(...);
const stream = client.getMediaStream();
Use attachVideo() NOT renderVideo()
renderVideo() is deprecated. Use attachVideo() which returns a VideoPlayer element:
import { VideoQuality } from '@zoom/videosdk';
const videoElement = await stream.attachVideo(userId, VideoQuality.Video_360P);
document.getElementById('video-container').appendChild(videoElement);
await stream.renderVideo(canvas, userId, ...);
Video Rendering is Event-Driven (CRITICAL)
You MUST listen for events to properly render participant videos:
client.on('peer-video-state-change', async (payload) => {
const { action, userId } = payload;
if (action === 'Start') {
const element = await stream.attachVideo(userId, VideoQuality.Video_360P);
container.appendChild(element);
} else if (action === 'Stop') {
await stream.detachVideo(userId);
}
});
client.on('user-added', (payload) => {
const users = client.getAllUser();
});
client.on('user-removed', (payload) => {
stream.detachVideo(payload[0].userId);
});
Peer Video on Mid-Session Join
Existing participants' videos won't auto-render when you join mid-session.
const renderExistingVideos = async () => {
await new Promise(resolve => setTimeout(resolve, 500));
const users = client.getAllUser();
const currentUserId = client.getCurrentUserInfo().userId;
for (const user of users) {
if (user.bVideoOn && user.userId !== currentUserId) {
const element = await stream.attachVideo(user.userId, VideoQuality.Video_360P);
document.getElementById(`video-${user.userId}`).appendChild(element);
}
}
};
CDN Race Condition with ES Modules
When using <script type="module"> with CDN, the SDK may not be loaded yet:
function waitForSDK(timeout = 10000) {
return new Promise((resolve, reject) => {
if (typeof WebVideoSDK !== 'undefined') {
resolve();
return;
}
const start = Date.now();
const check = setInterval(() => {
if (typeof WebVideoSDK !== 'undefined') {
clearInterval(check);
resolve();
} else if (Date.now() - start > timeout) {
clearInterval(check);
reject(new Error('SDK failed to load'));
}
}, 100);
});
}
await waitForSDK();
const ZoomVideo = WebVideoSDK.default;
SharedArrayBuffer for HD Video
For optimal performance and HD video, configure these headers on your server:
Cross-Origin-Opener-Policy: same-origin
Cross-Origin-Embedder-Policy: require-corp
Note: As of v1.11.2, SharedArrayBuffer is elective (not strictly required).
Check HD Capability Before Enabling
const stream = client.getMediaStream();
const hdSupported = stream.isSupportHDVideo();
const maxQuality = stream.getVideoMaxQuality();
if (hdSupported) {
await stream.startVideo({ hd: true });
}
Screen Share Rendering Mode Check
const stream = client.getMediaStream();
if (stream.isStartShareScreenWithVideoElement()) {
const video = document.getElementById('share-video');
await stream.startShareScreen(video as unknown as HTMLCanvasElement);
} else {
const canvas = document.getElementById('share-canvas');
await stream.startShareScreen(canvas);
}
Key Features
Video Quality Enum
import { VideoQuality } from '@zoom/videosdk';
VideoQuality.Video_90P
VideoQuality.Video_180P
VideoQuality.Video_360P
VideoQuality.Video_720P
VideoQuality.Video_1080P
Virtual Backgrounds
const stream = client.getMediaStream();
if (stream.isSupportVirtualBackground()) {
await stream.updateVirtualBackgroundImage('blur');
await stream.updateVirtualBackgroundImage('https://example.com/bg.jpg');
await stream.updateVirtualBackgroundImage(undefined);
}
Video Processor (Custom Effects)
The VideoProcessor class allows you to intercept and modify video frames:
class MyVideoProcessor extends VideoProcessor {
processFrame(input, output) {
const ctx = output.getContext('2d');
ctx.drawImage(input, 0, 0);
ctx.fillStyle = 'white';
ctx.font = '24px Arial';
ctx.fillText('Live', 20, 40);
return true;
}
}
WebRTC Mode
Enable WebRTC mode for direct peer-to-peer streaming with HD video support:
await client.init('en-US', 'Global', {
patchJsMedia: true,
webrtc: true
});
Feature Clients
Access specialized clients from the VideoClient:
| Client | Access Method | Purpose |
|---|
| Stream | client.getMediaStream() | Video, audio, screen share, devices |
| Chat | client.getChatClient() | Send/receive messages |
| Command | client.getCommandClient() | Custom commands (reactions, etc.) |
| Recording | client.getRecordingClient() | Cloud recording control |
| Transcription | client.getLiveTranscriptionClient() | Live captions |
| LiveStream | client.getLiveStreamClient() | RTMP streaming |
| Subsession | client.getSubsessionClient() | Breakout rooms |
| Whiteboard | client.getWhiteboardClient() | Collaborative whiteboard |
Common Tasks
Start/Stop Video
await stream.startVideo();
await stream.stopVideo();
Start/Stop Audio
await stream.startAudio();
await stream.muteAudio();
await stream.unmuteAudio();
await stream.stopAudio();
Switch Devices
const cameras = stream.getCameraList();
const mics = stream.getMicList();
const speakers = stream.getSpeakerList();
await stream.switchCamera(cameraId);
await stream.switchMicrophone(micId);
await stream.switchSpeaker(speakerId);
Screen Sharing
await stream.startShareScreen(canvas);
await stream.stopShareScreen();
client.on('active-share-change', async (payload) => {
if (payload.state === 'Active') {
await stream.startShareView(canvas, payload.userId);
} else {
await stream.stopShareView();
}
});
Chat
const chatClient = client.getChatClient();
await chatClient.send('Hello, everyone!');
await chatClient.sendToUser(userId, 'Private message');
client.on('chat-on-message', (payload) => {
console.log(`${payload.sender.name}: ${payload.message}`);
});
Recording (Host Only)
const recordingClient = client.getRecordingClient();
await recordingClient.startCloudRecording();
await recordingClient.stopCloudRecording();
client.on('recording-change', (payload) => {
console.log('Recording status:', payload.state);
});
Leave/End Session
await client.leave();
await client.leave(true);
Error Handling
Common Join Errors
| Error | Cause | Solution |
|---|
Invalid signature | JWT expired or malformed | Generate new signature |
Session does not exist | Host hasn't started yet | Show "waiting" message, retry |
Permission denied | User denied camera/mic | Request permission again |
Example Error Handler
try {
await client.join(topic, signature, userName, password);
} catch (error) {
if (error.reason?.includes('signature')) {
} else if (error.reason?.includes('Session')) {
} else if (error.reason?.includes('Permission')) {
}
console.error('Join failed:', error);
}
Browser Compatibility
| Feature | Chrome | Firefox | Safari | Edge |
|---|
| Video | 80+ | 75+ | 14+ | 80+ |
| Audio | 80+ | 75+ | 14+ | 80+ |
| Screen Share | 80+ | 75+ | 15+ | 80+ |
| Virtual BG | 80+ | 90+ | - | 80+ |
Safari Notes:
- Virtual background not supported
- Screen sharing requires macOS 15+
CORS Errors (Telemetry)
CORS errors to log-external-gateway.zoom.us are harmless.
These are caused by COOP/COEP headers blocking telemetry requests. They don't affect SDK functionality.
Complete Documentation Library
Core Concepts
Complete Examples
Framework Integrations
Troubleshooting
References
Official Sample Repositories
Resources
Need help? Start with SKILL.md for complete navigation.
Merged from video-sdk/web/SKILL.md
Zoom Video SDK Web - Complete Documentation Index
Quick Start Path
If you're new to the SDK, follow this order:
-
Read the architecture pattern → concepts/sdk-architecture-pattern.md
- Universal formula: Create Client → Init → Join → Get Stream → Use
- Once you understand this, you can implement any feature
-
Implement session join → examples/session-join-pattern.md
- Complete working JWT + session join code
-
Listen to events → examples/event-handling.md
- CRITICAL: The SDK is event-driven, you must listen for events
-
Implement video → examples/video-rendering.md
- Use attachVideo(), NOT renderVideo()
-
Troubleshoot any issues → troubleshooting/common-issues.md
- Quick diagnostic checklist
- Error code tables
Documentation Structure
video-sdk/web/
├── SKILL.md # Main skill overview
├── SKILL.md # This file - navigation guide
│
├── concepts/ # Core architectural patterns
│ ├── sdk-architecture-pattern.md # Universal formula for ANY feature
│ └── singleton-hierarchy.md # 4-level navigation guide
│
├── examples/ # Complete working code
│ ├── session-join-pattern.md # JWT auth + session join
│ ├── video-rendering.md # attachVideo() patterns
│ ├── screen-share.md # Send and receive screen shares
│ ├── event-handling.md # Required events
│ ├── chat.md # Chat implementation
│ ├── command-channel.md # Command channel messaging
│ ├── recording.md # Cloud recording control
│ ├── transcription.md # Live transcription/captions
│ ├── react-hooks.md # Official @zoom/videosdk-react library
│ └── framework-integrations.md # Next.js, Vue/Nuxt, ZFG patterns
│
├── troubleshooting/ # Problem solving guides
│ └── common-issues.md # Quick diagnostic workflow
│
└── references/ # Reference documentation
├── web-reference.md # API hierarchy, methods, error codes
└── events-reference.md # All event types
By Use Case
I want to build a video app
- SDK Architecture Pattern - Understand the pattern
- Session Join Pattern - Join sessions
- Video Rendering - Display video
- Event Handling - Listen for video events
I'm getting runtime errors
- Common Issues - Error code tables
- "getMediaStream() is undefined" → Call AFTER join() completes
I want to receive screen shares
- Screen Share - startShareView() patterns
- Event Handling - active-share-change event
I want to send screen shares
- Screen Share - startShareScreen() patterns
- Check isStartShareScreenWithVideoElement() for element type
I want to use chat
- Chat - Send/receive messages
- getChatClient() for ChatClient access
I want to record sessions
- Recording - Cloud recording (host only)
- getRecordingClient() for RecordingClient access
I want to use live transcription
- Transcription - Enable live captions
- getLiveTranscriptionClient() for LiveTranscriptionClient access
I want to use command channel
- Command Channel - Custom signaling between participants
- Must call getCommandClient() AFTER join()
I want to implement a specific feature
- SDK Architecture Pattern - START HERE!
- Singleton Hierarchy - Navigate to the feature
- API Reference - Method signatures
I'm using React
- React Hooks - Official @zoom/videosdk-react library
- Provides hooks: useSession, useSessionUsers, useVideoState, useAudioState
- Pre-built components: VideoPlayerComponent, ScreenSharePlayerComponent
I'm using Next.js or Vue/Nuxt
- Framework Integrations - SSR considerations
- Server-side JWT generation patterns
- Client-side only SDK usage
Most Critical Documents
1. SDK Architecture Pattern (MASTER DOCUMENT)
concepts/sdk-architecture-pattern.md
The universal 5-step pattern:
- Create client
- Initialize SDK
- Join session
- Get stream
- Use features + listen to events
2. Common Issues (MOST COMMON PROBLEMS)
troubleshooting/common-issues.md
Common issues:
- getMediaStream() returns undefined
- Video not displaying
- renderVideo() deprecated
3. Singleton Hierarchy (NAVIGATION MAP)
concepts/singleton-hierarchy.md
4-level deep navigation showing how to reach every feature.
Key Learnings
Critical Discoveries:
-
getMediaStream() ONLY works after join()
-
Use attachVideo() NOT renderVideo()
- renderVideo() is deprecated
- attachVideo() returns a VideoPlayer element to append to DOM
- See: Video Rendering
-
The SDK is Event-Driven
- You MUST listen for events to render participant videos
- key events: peer-video-state-change, user-added, user-removed
- See: Event Handling
-
Peer Videos on Mid-Session Join
- Existing participants' videos won't auto-render
- Must manually iterate getAllUser() and attachVideo()
- See: Video Rendering
-
CDN vs NPM
- CDN exports as
WebVideoSDK.default, not ZoomVideo
- Some networks/ad blockers may block
source.zoom.us - allowlist or use a permitted fallback strategy
- See: Session Join Pattern
-
SharedArrayBuffer for HD
- Required for 720p/1080p video
- Need COOP/COEP headers on server
- Check with
stream.isSupportHDVideo()
-
Screen Share Element Type
- Check
isStartShareScreenWithVideoElement() for correct element type
- See: Screen Share
-
Command Channel Setup Order
- Must call getCommandClient() AFTER client.join()
- Register listeners AFTER join, not before
- Web uses getCommandClient() not getCmdChannel()
- See: Command Channel
-
Command Channel is Session-Scoped
- Does NOT span across different sessions
- Both sender and receiver must be in the same session
Quick Reference
"getMediaStream() returns undefined"
→ Call AFTER join() completes
"Video not showing"
→ Video Rendering - Use attachVideo(), check events
"renderVideo() doesn't work"
→ Video Rendering - Use attachVideo() instead
"How do I implement [feature]?"
→ SDK Architecture Pattern
"How do I navigate to [client]?"
→ Singleton Hierarchy
"What error code means what?"
→ Common Issues
Document Version
Based on Zoom Video SDK for Web v2.3.x
Happy coding!
Remember: The SDK Architecture Pattern is your key to unlocking the entire SDK. Read it first!
Operations
- RUNBOOK.md - 5-minute preflight and debugging checklist.