Bindings for real-time audio, video, and transcript streams from Zoom Meetings
| Language | Status | Supported Platforms |
|---|---|---|
| Node.js | âś… Supported | darwin-arm64, linux-x64 |
| Python | âś… Supported | darwin-arm64, linux-x64 |
| Go | đź“… Planned | - |
We are actively working to expand both language and platform support in future releases.
| Node.js Version | N-API Version | Status | Notes |
|---|---|---|---|
| 22.x (LTS) | 10 | âś… Fully Supported | Recommended |
| 20.3.0+ | 9-10 | âś… Fully Supported | Minimum version, LTS until April 2026 |
| 20.0.0 - 20.2.x | 8 | ❌ Not Supported | N-API v9 unavailable |
| 18.x and older | 8 or older | ❌ Not Supported | EOL April 2025 - No security updates |
| 16.x and older | < 9 | ❌ Not Supported | N-API version too old |
Why the strict requirements? This package requires N-API version 9 or 10. Using older Node.js versions will result in segmentation faults or module loading errors.
Recommended versions:
- Node.js 22 LTS (latest, best performance)
- Node.js 20 LTS (stable, long-term support, minimum supported)
The RTMS SDK allows developers to:
- Connect to live Zoom meetings
- Process real-time media streams (audio, video, transcripts)
- Receive events about session and participant updates
- Build applications that interact with Zoom meetings in real-time
- Handle webhook events with full control over validation and responses
The RTMS SDK uses N-API versions 9 and 10, which require Node.js 20.3.0 or higher.
# Check your Node.js version
node --version
# Install the package
npm install @zoom/rtmsIf you're using an older version of Node.js:
# Using nvm (recommended)
nvm install 22 # Install Node.js 22 LTS (recommended)
nvm use 22
# Or install Node.js 20 LTS (minimum)
nvm install 20
nvm use 20
# Reinstall the package
npm install @zoom/rtmsDownload Node.js: https://nodejs.org/
The Node.js package provides both class-based and singleton APIs for connecting to RTMS streams.
The RTMS SDK requires Python 3.10 or higher.
# Check your Python version
python3 --version
# Install from TestPyPI (Current)
pip install -i https://test.pypi.org/simple/ rtms
# Install from PyPI (Coming Soon)
pip install rtmsIf you're using an older version of Python:
# Using pyenv (recommended)
pyenv install 3.12
pyenv local 3.12
# Or using your system's package manager
# Ubuntu/Debian: sudo apt install python3.12
# macOS: brew install python@3.12Download Python: https://www.python.org/downloads/
The Python package provides a Pythonic decorator-based API with full feature parity to Node.js.
Easily respond to Zoom webhooks and connect to RTMS streams:
import rtms from "@zoom/rtms";
// CommonJS
// const rtms = require('@zoom/rtms').default;
rtms.onWebhookEvent(({event, payload}) => {
if (event !== "meeting.rtms_started") return;
const client = new rtms.Client();
client.onAudioData((data, timestamp, metadata) => {
console.log(`Received audio: ${data.length} bytes from ${metadata.userName}`);
});
client.join(payload);
});For advanced use cases requiring custom webhook validation or response handling (e.g., Zoom's webhook validation challenge), you can use the enhanced callback with raw HTTP access:
import rtms from "@zoom/rtms";
rtms.onWebhookEvent((payload, req, res) => {
// Access request headers for webhook validation
const signature = req.headers['x-zoom-signature'];
// Handle Zoom's webhook validation challenge
if (req.headers['x-zoom-webhook-validator']) {
const validationToken = req.headers['x-zoom-webhook-validator'];
// Echo back the validation token
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({ plainToken: validationToken }));
return;
}
// Custom validation logic
if (!validateWebhookSignature(payload, signature)) {
res.writeHead(401, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({ error: 'Invalid signature' }));
return;
}
// Process the webhook payload
if (payload.event === "meeting.rtms_started") {
const client = new rtms.Client();
client.onAudioData((data, timestamp, metadata) => {
console.log(`Received audio from ${metadata.userName}`);
});
client.join(payload.payload);
}
// Send custom response
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({ status: 'ok' }));
});For greater control or connecting to multiple streams simultaneously:
import rtms from "@zoom/rtms";
const client = new rtms.Client();
client.onAudioData((data, timestamp, metadata) => {
console.log(`Received audio: ${data.length} bytes`);
});
client.join({
meeting_uuid: "your_meeting_uuid",
rtms_stream_id: "your_stream_id",
server_urls: "wss://example.zoom.us",
});When you only need to connect to a single RTMS stream:
import rtms from "@zoom/rtms";
rtms.onAudioData((data, timestamp, metadata) => {
console.log(`Received audio from ${metadata.userName}`);
});
rtms.join({
meeting_uuid: "your_meeting_uuid",
rtms_stream_id: "your_stream_id",
server_urls: "wss://rtms.zoom.us"
});#!/usr/bin/env python3
import rtms
import signal
import sys
from dotenv import load_dotenv
load_dotenv()
client = rtms.Client()
# Graceful shutdown handler
def signal_handler(sig, frame):
print('\nShutting down gracefully...')
client.leave()
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
# Webhook event handler
@client.on_webhook_event()
def handle_webhook(payload):
if payload.get('event') == 'meeting.rtms_started':
rtms_payload = payload.get('payload', {})
client.join(
meeting_uuid=rtms_payload.get('meeting_uuid'),
rtms_stream_id=rtms_payload.get('rtms_stream_id'),
server_urls=rtms_payload.get('server_urls'),
signature=rtms_payload.get('signature')
)
# Callback handlers
@client.onJoinConfirm
def on_join(reason):
print(f'Joined meeting: {reason}')
@client.onTranscriptData
def on_transcript(data, size, timestamp, metadata):
text = data.decode('utf-8')
print(f'[{metadata.userName}]: {text}')
@client.onLeave
def on_leave(reason):
print(f'Left meeting: {reason}')
if __name__ == '__main__':
print('Webhook server running on http://localhost:8080')
import time
while True:
# Process queued join requests from webhook thread
client._process_join_queue()
# Poll for SDK events
client._poll_if_needed()
time.sleep(0.01)For production use cases requiring custom webhook validation:
import rtms
import hmac
import hashlib
client = rtms.Client()
@client.on_webhook_event()
def handle_webhook(payload, request, response):
# Access request headers for validation
signature = request.headers.get('x-zoom-signature')
# Handle Zoom's webhook validation challenge
if request.headers.get('x-zoom-webhook-validator'):
validator = request.headers['x-zoom-webhook-validator']
response.set_status(200)
response.send({'plainToken': validator})
return
# Custom signature validation
if not validate_signature(payload, signature):
response.set_status(401)
response.send({'error': 'Invalid signature'})
return
# Process valid webhook
if payload.get('event') == 'meeting.rtms_started':
client.join(payload.get('payload'))
response.send({'status': 'ok'})Create a virtual environment and install dependencies:
# Create virtual environment
python3 -m venv .venv
# Activate virtual environment
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies
pip install python-dotenv
# Install RTMS SDK
pip install -i https://test.pypi.org/simple/ rtmsCreate a .env file:
# Required - Your Zoom OAuth credentials
ZM_RTMS_CLIENT=your_client_id
ZM_RTMS_SECRET=your_client_secret
# Optional - Webhook server configuration
ZM_RTMS_PORT=8080
ZM_RTMS_PATH=/webhook
# Optional - Logging configuration
ZM_RTMS_LOG_LEVEL=debug # error, warn, info, debug, trace
ZM_RTMS_LOG_FORMAT=progressive # progressive or json
ZM_RTMS_LOG_ENABLED=true # true or falseThe RTMS SDK can be built from source using either Docker (recommended) or local build tools.
- Docker and Docker Compose
- Zoom RTMS C SDK files (contact Zoom for access)
# Clone the repository
git clone https://github.com/zoom/rtms.git
cd rtms
# Place your SDK library files in the lib/{arch} folder
# For linux-x64:
cp ../librtmsdk.0.2025xxxx/librtmsdk.so.0 lib/linux-x64
# For darwin-arm64 (Apple Silicon):
cp ../librtmsdk.0.2025xxxx/librtmsdk.dylib lib/darwin-arm64
# Place the include files in the proper directory
cp ../librtmsdk.0.2025xxxx/h/* lib/include
# Build and run using Docker Compose
docker compose up js # Create Node.js prebuild for linux-x64
# or
docker compose up py # Create Python wheel for linux-x64Docker Compose creates distributable packages for linux-x64 (prebuilds for Node.js, wheels for Python). Use this when developing on macOS to build Linux packages for distribution.
- Node.js (>= 20.3.0, LTS recommended)
- Python 3.10+ with pip (for Python build)
- CMake 3.25+
- C/C++ build tools
- Zoom RTMS C SDK files (contact Zoom for access)
# Install system dependencies
sudo apt update
sudo apt install -y cmake python3-full python3-pip pipx npm
npm install -g prebuild
pip install "pybind11[global]" python-dotenv pdoc3
# Clone and set up the repository
git clone https://github.com/zoom/rtms.git
cd rtms
# Place SDK files in the appropriate lib directory
# lib/linux-x64/ or lib/darwin-arm64/
# Install project dependencies and build
npm install
# Build for specific language and platform
npm run build:js # Build Node.js for current platform
npm run build:js:linux # Build Node.js for Linux
npm run build:js:darwin # Build Node.js for macOS
npm run build:py # Build Python for current platform
npm run build:py:linux # Build Python wheel for Linux
npm run build:py:darwin # Build Python wheel for macOSThe project uses a unified command structure across all languages: <action>:<lang>:<platform>
# Building modules
npm run build:js # Build Node.js for current platform
npm run build:js:linux # Build Node.js for Linux
npm run build:js:darwin # Build Node.js for macOS
npm run build:py # Build Python for current platform
npm run build:py:linux # Build Python wheel for Linux
npm run build:py:darwin # Build Python wheel for macOS
npm run build:go # Build Go for current platform (coming soon)
npm run build:go:linux # Build Go for Linux (coming soon)
npm run build:go:darwin # Build Go for macOS (coming soon)
# Creating prebuilds for distribution
npm run prebuild:js # Create Node.js prebuilds for all platforms
npm run prebuild:js:linux # Create Node.js prebuild for Linux
npm run prebuild:js:darwin # Create Node.js prebuild for macOS
npm run prebuild:py # Create Python wheels (same as build)
npm run prebuild:py:linux # Create Python wheel for Linux
npm run prebuild:py:darwin # Create Python wheel for macOS
# Uploading to package registries
npm run upload:js # Upload Node.js prebuilds to GitHub releases
npm run upload:js:linux # Upload Node.js Linux prebuild
npm run upload:js:darwin # Upload Node.js macOS prebuild
npm run upload:py # Upload Python wheels to TestPyPI
npm run upload:py:linux # Upload Python Linux wheel to TestPyPI
npm run upload:py:darwin # Upload Python macOS wheel to TestPyPI
npm run upload:py:prod # Upload Python wheels to production PyPI
npm run upload:py:prod:linux # Upload Python Linux wheel to PyPI
npm run upload:py:prod:darwin # Upload Python macOS wheel to PyPI
# Testing
npm run test # Run all tests
npm run test:js # Run Node.js tests
npm run test:py # Run Python tests
# Build modes
npm run debug # Switch to debug mode
npm run release # Switch to release mode (default)
npm run rtms mode # Check current build modeThese commands help you manage different aspects of the build process and testing workflow. The unified structure makes it easy to build, package, and publish for multiple languages and platforms.
If you encounter issues:
Symptoms:
- Immediate crash when requiring/importing the module
- Error message:
Segmentation fault (core dumped) - Stack trace shows
napi_module_register_by_symbol
Root Cause: Using Node.js version < 20.3.0
Solution:
# 1. Check your Node.js version
node --version
# 2. If < 20.3.0, upgrade to a supported version
# Using nvm (recommended):
nvm install 22 # Install Node.js 22 LTS (recommended)
nvm use 22
# Or install minimum version:
nvm install 20
nvm use 20
# Or download from: https://nodejs.org/
# 3. Clear npm cache and reinstall
npm cache clean --force
rm -rf node_modules package-lock.json
npm installPrevention:
- Always use Node.js 20.3.0 or higher
- Use recommended version with
.nvmrc:nvm use(Node.js 22) - Check version before installing:
node --version
Verify you're using a supported platform (darwin-arm64 or linux-x64)
Ensure RTMS C SDK files are correctly placed in the appropriate lib directory
Try both debug and release modes (npm run debug or npm run release)
Verify all prerequisites are installed
If you're a maintainer looking to build, test, or publish new releases of the RTMS SDK, please refer to PUBLISHING.md for comprehensive documentation on:
- Building platform-specific wheels and prebuilds
- Publishing to npm and PyPI
- GitHub Actions CI/CD workflow
- Testing procedures
- Troubleshooting common issues
- Release workflows for Node.js and Python
This project is licensed under the MIT License - see the LICENSE.md file for details.