Video SDK for iOS API Reference
All Classes Files Functions Enumerations Enumerator Properties
ZoomVideoSDKIncomingLiveStreamHelper Class Reference

#include <ZoomVideoSDKLiveStreamHelper.h>

Inherits NSObject.

Instance Methods

(ZoomVideoSDKError- bindIncomingLiveStream:
 Bind incoming live stream with a stream key ID.
 
(ZoomVideoSDKError- unbindIncomingLiveStream:
 Unbind the binded incoming live stream.
 
(ZoomVideoSDKError- getIncomingLiveStreamStatus
 Get the status of binded streams.
 
(ZoomVideoSDKError- startIncomingLiveStream:
 Start the binded stream as a special participant.
 
(ZoomVideoSDKError- stopIncomingLiveStream:
 Stop the binded stream as a special participant.
 

Detailed Description

Definition at line 58 of file ZoomVideoSDKLiveStreamHelper.h.

Method Documentation

◆ bindIncomingLiveStream:

- (ZoomVideoSDKError) bindIncomingLiveStream: (NSString *_Nullable) streamKeyID

Bind incoming live stream with a stream key ID.

Parameters
streamKeyIDThe stream key ID to bind.
Returns
If the function succeeds, it will return Errors_Success.
Warning
Only host can bind incoming live stream.

◆ getIncomingLiveStreamStatus

- (ZoomVideoSDKError) getIncomingLiveStreamStatus

Get the status of binded streams.

Note
Will receive callback "-onIncomingLiveStreamStatusResponse:"
Returns
If the function succeeds, it will return Errors_Success.
Warning
Only host can get incoming live stream status.

◆ startIncomingLiveStream:

- (ZoomVideoSDKError) startIncomingLiveStream: (NSString *_Nullable) streamKeyID

Start the binded stream as a special participant.

Parameters
streamKeyIDThe stream key ID to bind.
Returns
If the function succeeds, it will return Errors_Success.
Warning
Only host can start incoming live stream.

◆ stopIncomingLiveStream:

- (ZoomVideoSDKError) stopIncomingLiveStream: (NSString *_Nullable) streamKeyID

Stop the binded stream as a special participant.

Parameters
streamKeyIDThe stream key ID to bind.
Returns
If the function succeeds, it will return Errors_Success.
Warning
Only host can stop incoming live stream.

◆ unbindIncomingLiveStream:

- (ZoomVideoSDKError) unbindIncomingLiveStream: (NSString *_Nullable) streamKeyID

Unbind the binded incoming live stream.

Parameters
streamKeyIDThe stream key ID to bind.
Returns
If the function succeeds, it will return Errors_Success.
Warning
Only host can unbind incoming live stream.