帮助开发者在网页中集成实时音视频、共享屏幕、录制与字幕能力。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "video-sdk/web" 技能: 1. 下载 https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/partner-built/zoom-plugin/skills/video-sdk/web/SKILL.md 2. 保存为 ~/.claude/skills/web/SKILL.md 3. 装好后重载技能,告诉我可以用了
请用 JavaScript 展示如何在网页应用中集成 Zoom Video SDK,完成加入会话、本地音视频开启、成员列表显示和离开会话的基础流程。
一份包含初始化、鉴权、入会和基础会控逻辑的前端集成示例。
请提供一个 TypeScript 示例,说明如何在浏览器中使用 Zoom Video SDK 实现开始和停止屏幕共享,并处理共享状态变化事件。
可直接参考的屏幕共享代码片段,以及相关事件监听说明。
请设计一个基于 Zoom Video SDK for Web 的实现方案,支持会话录制状态展示、实时字幕接入,并说明前端需要处理的权限、状态和 UI 提示。
包含功能架构、前端交互要点和关键状态处理建议的实施方案。
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
New to Video SDK? Follow this path:
Reference:
Having issues?
The Zoom Video SDK for Web is a JavaScript library that provides:
// Check browser compatibility before init
const compatibility = ZoomVideo.checkSystemRequirements();
console.log('Audio:', compatibility.audio);
console.log('Video:', compatibility.video);
console.log('Screen:', compatibility.screen);
// Check feature support
const features = ZoomVideo.checkFeatureRequirements();
console.log('Supported:', features.supportFeatures);
console.log('Unsupported:', features.unSupportFeatures);
Use Probe SDK as a readiness gate before client.join(...) when you need to reduce failed starts:
allow, warn, block).Cross-skill flow: ../../general/use-cases/probe-sdk-preflight-readiness-gate.md
npm install @zoom/videosdk
import ZoomVideo from '@zoom/videosdk';
…
围绕客户问题进行多来源调研与溯源,快速整理背景并支持准确回复。
帮助开发者快速集成网页端 Zoom 会议全屏客户端界面体验