Shorter length recordings

Not sure where to post this, but ideally we are looking for a REST API endpoint to stop and start recording. Haven’t seen this on the SDK reference.

For the Zoom recording capability, is it possible to create recordings of shorter length? For example, for a fifteen minute meeting, we might want 15 cloud recordings, each one minute in length. To achieve this, we would programmatically stop and start recording every one minute.

From the documentation, it appears that hosts have the capability to stop and start recordings. But the documentation is not very clear. From what I can see, start/stop recording is not even listed in the API reference documentation (https://marketplace.zoom.us/docs/api-reference/using-zoom-apis), only the the webhook events that are raised when start/stop recording occurs. Reading through the SDK docs, it seems that Android and C# has this capability, but Web does not. So am I right to assume that the SDK does not support this for all platforms? Is there a table of platforms and their capabilities that covers the start/stop recording API?

Hey @tanderson, thanks for posting and using Zoom!

We do not have this feature.

However you can accomplish programmatic starting / stopping of recording using our SDKs.

For example, here is the function for the web sdk:
https://zoom.github.io/sample-app-web/ZoomMtg.html#record

Thanks,
Tommy

1 Like

Thanks @tommy.

By the way, when the recording is stopped and then started again, is the second segment be considered a separate recording from the first? Or is it one recording per meeting?

From the docs it seems like there would be multiple recordings. https://marketplace.zoom.us/docs/api-reference/zoom-api/cloud-recording/recordingget

Hey @tanderson,

Correct, the second recording will be a separate file / JSON object from https://marketplace.zoom.us/docs/api-reference/zoom-api/cloud-recording/recordingget

Thanks,
Tommy

1 Like