Description
We are preparing a bot that will join the zoom meeting and receive the raw data to process it as per our business needs. We could achieve it in our dev box using this article of meeting SDK (not the video SDK).
The questions I have is,
can we use Meeting SDK for production as I have seen in the various articles (here, here and here) saying meeting SDK raw data is discontinued.
If we can use meeting SDK, what license do we need to make a product where our bot joins our clients’ zoom meeting and access their raw data.
If we cannot use meeting SDK anymore, the article about video SDK do not talk about Video but only talks about Audio. Can we have a sample for that?
Which Windows Meeting SDK version?
Knowing the version can help us to identify your issue faster.
To Reproduce(If applicable)
Not applicable
Screenshots
Not applicable
Device (please complete the following information):
You can access raw audio and video through the raw recording feature linked to in your description. This does not require any sort of license. The only prerequisite for this feature is that the SDK instance has permission to start a local recording.
I am using client SDK and able to get raw video using IZoomSDKRendererDelegate. But video frame resolution is quiet law ( i.e. 640 x 360 or 256 x 144) , even if I set IZoomSDKRenderer::setRawDataResolution() to ZoomSDKResolution_1080P before calling IZoomSDKRenderer ’ s subscribe() method it does not work. I have set HD video in Meeting setting
camera is HD type but of no use. May i get all user’s HD video some how ??
The resolution is dependent on several factors, so you cannot always guarantee that the requested resolution is what you will receive. Many of these variables are based around network quality, so you may see lower resolution when your network connection is unstable or slow.
In order to get 1080p video, you cannot have any other active video subscriptions. Currently the SDK only allows you to access one remote 1080p stream at a time. If you have the video of any other users displayed (not including the local user/preview video), you will not be able to receive 1080p.
Is there any way of getting 1080p raw video/ audio of all users using Zoom client SDK ( if i have good network connection ) ??
I have a requirement of getting all users 1080p frame using client SDK.
We are facing a little challenge in the buffer received. If you see in the below image, the zoom and the data received by SDK. The YUV formate what is received is straightaway passed to our streaming platform however it seems broken from two angles:
You currently cannot receive multiple remote 1080p streams through the SDK, regardless of your connection quality. This is a limitation imposed by our back end and cannot be modified by the SDK.
It seems that you are incorrectly rendering the YUV420p video. I would suggest comparing your implementation against other renderers to determine what needs to be changed.