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

A class to operate the live stream. More...

#include <ZoomVideoSDKLiveStreamHelper.h>

Inherits NSObject.

Instance Methods

(ZoomVideoSDKError- startLiveStreamWithStreamingURL:StreamingKey:BroadcastURL:
 Call the function to start live stream.
 
(ZoomVideoSDKError- stopLiveStream
 Set to stop live streaming.
 
(ZoomVideoSDKError- canStartLiveStream
 Check to see if you can start live streaming.
 

Detailed Description

A class to operate the live stream.

Definition at line 15 of file ZoomVideoSDKLiveStreamHelper.h.

Method Documentation

◆ canStartLiveStream

- (ZoomVideoSDKError) canStartLiveStream

Check to see if you can start live streaming.

Returns
The result of it.

◆ startLiveStreamWithStreamingURL:StreamingKey:BroadcastURL:

- (ZoomVideoSDKError) startLiveStreamWithStreamingURL: (NSString *_Nullable) streamingURL
StreamingKey: (NSString *_Nullable) key
BroadcastURL: (NSString *_Nullable) broadcastURL 

Call the function to start live stream.

Parameters
streamingURLThe live stream URL by which you can live the session.
keyStream key offered by the third platform on which you want to live stream your session.
broadcastURLThe URL of live stream website.
Returns
Success means that the method is called successfully, otherwise not.
Warning
Only session host can start live Stream successfully.

◆ stopLiveStream

- (ZoomVideoSDKError) stopLiveStream

Set to stop live streaming.

Returns
YES means stopping live streaming successfully, otherwise not.
Warning
The function is available only for host.