帮助开发者将 Zoom 会议能力深度集成到 Windows 原生桌面应用中
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "zoom-meeting-sdk-windows" 技能: 1. 下载 https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/partner-built/zoom-plugin/skills/meeting-sdk/windows/SKILL.md 2. 保存为 ~/.claude/skills/windows/SKILL.md 3. 装好后重载技能,告诉我可以用了
请说明如何在 Windows 原生 C++ 桌面应用中集成 Zoom Meeting SDK,使用自定义 UI 而不是默认界面,并给出初始化 SDK、加入会议、处理 Windows 消息循环的示例代码。
一份集成步骤说明,包含 C++ 示例代码、关键回调说明和 Windows 消息循环处理要点。
请演示如何使用 Zoom Meeting SDK for Windows 订阅会议中的原始视频和音频数据,包括启用相关能力、注册回调、接收帧数据,并说明常见权限与性能注意事项。
一套原始音视频数据接入示例,附带回调结构、数据流说明和性能优化建议。
请给出一个基于 Zoom Meeting SDK for Windows 的 headless bot 设计方案,用于自动加入会议、静默监听状态、触发录制或转写流程,并说明架构模式与异常处理策略。
一个适用于自动化场景的机器人架构方案,包含流程设计、核心模块划分和异常恢复建议。
Embed Zoom meeting capabilities into Windows desktop applications for native C++ integrations and headless bots.
The fastest way to master the SDK:
Building a Custom UI?
Having issues?
Need help with authentication? See the zoom-oauth skill for JWT token generation.
IMPORTANT: These are hard-won preferences from real project experience. Follow these when creating new projects.
.vcxprojAlways create a native Visual Studio .sln + .vcxproj project, not a CMake project. Reasons:
.sln to open in Visual Studio immediatelyconfig.json must be visible in Solution ExplorerThe config.json file (containing sdk_jwt, meeting_number, passcode) must be:
.vcxproj as a <None> item with <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>.vcxproj.filters file so it appears under a "Config" folder in Solution ExplorerExample .vcxproj entry:
<ItemGroup>
<None Include="config.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
Example .vcxproj.filters entry:
<ItemGroup>
<Filter Include="Config">
<UniqueIdentifier>{GUID-HERE}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<None Include="config.json">
<Filter>Config</Filter>
</None>
</ItemGroup>
The Windows SDK is a C++ native SDK designed for:
The SDK follows a universal 3-step pattern for every feature:
meetingService->Get[Feature]Controller()…
运行 nf-core/Nextflow 流水线,完成 RNA-seq、变异检测与 ATAC-seq 数据分析
为特定组织定制 Claude Code 插件配置、连接器与工作流适配方案。
围绕客户问题进行多来源调研与溯源,快速整理背景并支持准确回复。
帮助你快速查询指标、分析趋势成因,并生成面向干系人的数据报告。
用于统计分析数据分布、趋势、异常与显著性检验,辅助得出可靠结论
帮助你用 Python 制作清晰专业的数据可视化并选择合适图表。
帮助开发者在 macOS 原生应用中集成 Zoom 会议与主持加入流程。
帮助开发者在 Linux 服务器上构建可录制、转写并接入 AI 的 Zoom 会议机器人。
帮助开发者在 Electron 桌面应用中集成 Zoom 会议、鉴权、入会与原始数据能力。
帮助开发者为 macOS 原生桌面应用构建自定义 Zoom 视频会话与设备控制能力。
帮助开发者在 Unreal 项目中集成 Zoom 会议功能并处理 C++/蓝图封装映射。
帮助开发者将 Zoom 会议能力嵌入网页应用,支持完整界面或组件化集成。