Stream recorded videos

Description
Hi @eugenem

I found this post Streaming recordings where you had asked what the use case was to stream recordings in the browser. However, there was no follow up on the issue.

I was hoping to find an answer there.

The use case for us is such that we don’t want users to download the videos but we want to be able to stream the recordings from Zoom.

Please let me know if and how this is possible. Thanks.

I have found the solution. Just put download url with a query param of “access_token” which should be equal to your JWT API access token Video SDK - Authorize or the download access token. For more information on how to get the download access token see here: Zoom Video SDK API

<video controls>
  <source src="your_recording_download_url?access_token=your_jwt_access_token_or_your_download_access_token" type="video/mp4">

  Your browser does not support the video tag.
</video>

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.