Question
Failded to subscribe the raw audio.
Why geting 404 error: https://github.com/zoom/meetingsdk-linux-raw-recording-sample Also I need working dockerized sample for raw audio healdess zoom bot using meeting sdk linux
Answer
The Zoom Meeting SDK Linux Raw Recording Sample Github Repo has been removed from their GitHub.
That said and rather than chasing that link, here’s the high-level path to real-time raw audio using their Linux Meeting SDK:
- Set up the Linux Meeting SDK and enable raw-data features (guide)
- Implement the audio callbacks via
IZoomSDKAudioRawDataDelegate
(e.g., mixed or one-way audio). - Subscribe/unsubscribe using
IZoomSDKAudioRawDataHelper::subscribe(...)
. - Consume PCM frames from
AudioRawData
and forward them to your processing/streaming pipeline.
This flow - SDK init → delegate → subscribe → consume PCM - covers the core pieces without relying on any specific sample repo
Zoom Developer Forum Examples
Some examples of this question are: