New to Claude Skills? Learn how to install them →

anthropics on GitHub

Zoom AI Services Scribe

OfficialFree

Efficiently transcribe audio and video files with Zoom AI.

Get this skill

Free · Opens the source repo

What Zoom AI Services Scribe does

The Zoom AI Services Scribe skill provides a comprehensive reference for handling transcription workflows involving audio and video media. It supports both synchronous and asynchronous transcription methods, allowing users to transcribe single files or batch process multiple recordings. This skill is particularly useful for developers and designers looking to integrate transcription capabilities into their applications or workflows, especially when dealing with uploaded or stored media.

The core functionality includes submitting transcription requests via the Zoom AI Services API, with options for fast mode for quick, single-file transcriptions and batch mode for larger sets of files. Users can also utilize webhook-driven notifications to receive updates on the status of their transcription jobs, making it easier to manage and process multiple files efficiently. The skill includes practical examples and scenarios to guide users through common use cases, such as on-demand transcription of uploaded recordings or batch processing of archived calls.

For those interested in implementing a browser-based microphone experience, the skill offers a pseudo-streaming approach, where audio is captured in short chunks and uploaded for transcription. While this method provides a way to achieve incremental updates, it is recommended as a fallback rather than a primary solution for real-time streaming, as it introduces additional complexity and potential delays.

Overall, the Zoom AI Services Scribe skill is a valuable resource for anyone looking to incorporate transcription features into their applications, offering clear guidance on authentication, processing modes, and handling various media types. Its structured approach to transcription workflows makes it a practical choice for developers working with Zoom's AI services.

When to use it

Use this skill when you need to transcribe uploaded or stored media files into text, either for single instances or batch processing.

When not to use it

This skill is not suitable for real-time live transcription of meetings or low-latency media streaming; use the RTMS skill for those scenarios instead.

What you can build with it

On-demand Transcription of Uploaded Recordings

Transcribe a single audio or video file immediately after a user uploads it for quick access to text.

Batch Processing of Archived Calls

Process multiple stored recordings at once, such as S3 call archives, to generate transcripts efficiently.

Webhook-driven ETL Pipeline

Integrate transcript generation into an ETL pipeline, automatically writing transcripts to a database or search index.

How to install Zoom AI Services Scribe

View source

1. Install with the skills CLI

npx skills add anthropics/knowledge-work-plugins/scribe --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by anthropics

Zoom AI Services Scribe

Background reference for Zoom AI Services Scribe across:

  • synchronous single-file transcription (POST /aiservices/scribe/transcribe)
  • asynchronous batch jobs (/aiservices/scribe/jobs*)
  • browser microphone pseudo-streaming via repeated short file uploads
  • webhook-driven batch status updates
  • Build-platform JWT generation and credential handling

Official docs:

Routing Guardrail

  • If the user needs uploaded or stored media transcribed into text, route here first.
  • If the user needs live meeting media without file-based upload/batch jobs, route to ../rtms/SKILL.md.
  • If the user needs Zoom REST API inventory for AI Services paths, chain ../rest-api/SKILL.md.
  • If the user needs webhook signature patterns or generic HMAC receiver hardening, optionally chain ../webhooks/SKILL.md.

Quick Links

  1. concepts/auth-and-processing-modes.md
  2. scenarios/high-level-scenarios.md
  3. examples/fast-mode-node.md
  4. examples/batch-webhook-pipeline.md
  5. references/api-reference.md
  6. references/environment-variables.md
  7. references/samples-validation.md
  8. references/versioning-and-drift.md
  9. troubleshooting/common-drift-and-breaks.md
  10. RUNBOOK.md

Core Workflow

  1. Get Build-platform credentials and generate an HS256 JWT.
  2. Choose fast mode for one short file or batch mode for stored archives / large sets.
  3. Submit the transcription request.
  4. For batch jobs, poll job/file status or receive webhook notifications.
  5. Persist and post-process transcript JSON.

Hosted Fast-Mode Guardrail

  • The formal fast-mode API limits are 100 MB and 2 hours, but hosted browser flows can still time out before the upstream response returns.
  • Current deployed-sample observations:
    • ~17.2 MB MP4 completed in about 26s
    • ~38.6 MB MP4 completed in about 26-37s
    • ~59.2 MB MP4 completed in about 32-34s on the backend
    • some ~59.2 MB browser requests still surfaced as frontend 504 while backend logs later showed 200
  • Treat frontend 504 plus backend 200 as a browser/edge timeout race, not an automatic transcription failure.
  • For hosted UIs, prefer an async request/polling wrapper for fast mode instead of holding the browser open for the full upstream response.
  • For larger or less predictable media, prefer batch mode even when the file is still within the formal fast-mode size limit.

Browser Microphone Pattern

  • scribe does not expose a documented real-time streaming API surface.
  • If you want a browser microphone experience, use pseudo-streaming:
    1. capture microphone audio in short chunks
    2. upload each chunk through the async fast-mode wrapper
    3. poll for completion
    4. append chunk transcripts in sequence
  • Recommended starting cadence:
    • chunk size: 5 seconds
    • acceptable range: 5-10 seconds
    • in-flight chunk requests: 2-3
  • This is a practical UI pattern for incremental transcript updates, not a substitute for rtms.
  • Treat this as a fallback demo pattern, not the preferred production architecture.
  • It adds repeated upload overhead, chunk-boundary drift, browser codec/container variability, and transcript stitching complexity.
  • If the user asks for actual live stream ingestion, low-latency continuous media, or server-push media transport, route to ../rtms/SKILL.md instead.

Endpoint Surface

ModeMethodPathUse
FastPOST/aiservices/scribe/transcribeSynchronous transcription for one file
BatchPOST/aiservices/scribe/jobsSubmit asynchronous batch job
BatchGET/aiservices/scribe/jobsList jobs
BatchGET/aiservices/scribe/jobs/{jobId}Inspect job summary/state
BatchDELETE/aiservices/scribe/jobs/{jobId}Cancel queued/processing job
BatchGET/aiservices/scribe/jobs/{jobId}/filesInspect per-file results

High-Level Scenarios

  • On-demand clip transcription after a user uploads one recording.
  • Batch transcription of stored S3 call archives.
  • Webhook-driven ETL pipeline that writes transcripts to your database/search index.
  • Re-transcription of Zoom-managed recordings after exporting them to your own storage.
  • Offline compliance or QA workflows that need timestamps, channel separation, and speaker hints.

Chaining

Operations

  • RUNBOOK.md - 5-minute preflight and debugging checklist.

Frequently asked questions about Zoom AI Services Scribe

Similar skills