Meeting SDK for macOS API Reference
|
#include <ZoomSDKMeetingProductionStudioController.h>
Inherits NSObject.
Instance Methods | |
(ZoomSDKError) | - sendVideoFrame:width:height:frameLength:format: |
Send video to production studio. | |
(ZoomSDKError) | - sendAudio:dataLength:sampleRate:channel: |
Send audio to production studio. | |
Definition at line 6 of file ZoomSDKMeetingProductionStudioController.h.
- (ZoomSDKError) sendAudio: | (char *) | data | |
dataLength: | (unsigned int) | length | |
sampleRate: | (int) | rate | |
channel: | (ZoomSDKAudioChannel) | channel |
Send audio to production studio.
data | The audio data's address. |
length | The audio data's length, in even numbers. |
rate | The audio data's sampling rate. |
channel | The channel type, default is ZoomSDKAudioChannel_Mono. |
- (ZoomSDKError) sendVideoFrame: | (char *) | frameBuffer | |
width: | (unsigned int) | width | |
height: | (unsigned int) | height | |
frameLength: | (unsigned int) | frameLength | |
format: | (ZoomSDKFrameDataFormat) | format |
Send video to production studio.
frameBuffer | The data to send. |
width | The width of the data to send. |
height | The height of the data to send. |
frameLength | The length of the data to send. |
format | The format of frame data. |
ZoomSDKError_Success
, otherwise failed.