Description
I have integrated the Zoom Meeting WebSDK into the Angular 11 application with client view. Now I need to record the ongoing sessions without any interruption (Host cannot stop or pause the recording) and store it onto the cloud storage, and only the Admin can have access those recorded file. The users who have been engaged in the meetings will not gonna have any access to those file. And also is there a way we can make a relation between the videos recorded and the meeting id. And is there any API that can fetch the video file from the Zoom Cloud Storage so that the Admin can view them whenever he/she wants.
Also I need this feature also be available in the Android and IOS platform as well. On the mobile platform we are using the Zoom Meeting SDK of those platform.
This information I require, based on this I can choose which plan I should go to upgrade my account to.
Browser Console Error
Right now I have enabled the Automatic Recording in the settings. (For local only)
and used following code snippet
ZoomMtg.record({
record: true
});
But it is showing the following error.
{
errorCode: 1,
errorMessage: "Please make sure host has enabled cloud recording and also not disabled it when use \"init()\" method",
method: "record",
result: null,
status: false
}
Which Web Meeting SDK version?
Version:- 2.2.0
Thank You.