#include <ZoomSDKMeetingProductionStudioController.h>
Inherits NSObject.
|
(BOOL) | - isSupportPSMode |
| Returns if production studio mode is supported.
|
|
(BOOL) | - canStartPSMode |
| Determine if you have permission to start production studio mode. Only the host or cohost can start production studio mode.
|
|
(ZoomSDKError) | - startPSMode: |
| Start production studio mode. After starting, send data to video and audio publication to production studio through the ZoomSDKPSSender interface.
|
|
(ZoomSDKError) | - stopPSMode |
| Stop production studio mode.
|
|
(BOOL) | - isPSModeStarted |
| Determine if production studio mode has started.
|
|
(unsigned int) | - getPSUserID |
| Returns the current production studio user's user ID.
|
|
◆ canStartPSMode
Determine if you have permission to start production studio mode. Only the host or cohost can start production studio mode.
- Returns
- If you have permission to start production studio mode, return YES. Otherwise return NO.
◆ getPSUserID
- (unsigned int) getPSUserID |
|
|
|
Returns the current production studio user's user ID.
- Returns
- The user ID of current production studio user.
◆ isPSModeStarted
Determine if production studio mode has started.
- Returns
- YES means production studio mode is started. Otherwise not.
◆ isSupportPSMode
Returns if production studio mode is supported.
- Returns
- YES means production studio mode is supported.
◆ startPSMode:
Start production studio mode. After starting, send data to video and audio publication to production studio through the ZoomSDKPSSender interface.
- Parameters
-
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise the function fails.
◆ stopPSMode
Stop production studio mode.
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise the function fails.
◆ delegate