Video SDK for iOS API 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) | - startLiveStreamWithParams: |
Start a live stream of the current session using ZoomVideoSDKLiveStreamParams. | |
(ZoomVideoSDKError) | - stopLiveStream |
Set to stop live streaming. | |
(ZoomVideoSDKError) | - canStartLiveStream |
Check to see if you can start live streaming. | |
(ZoomVideoSDKLiveStreamSetting *_Nullable) | - getCurrentLiveStreamSetting |
Get the current live stream settings for the current session. | |
(ZoomVideoSDKError) | - updateLiveStreamSetting: |
Update the live stream settings for the current session. | |
(BOOL) | - canGetOrUpdateLiveStreamSetting |
Check if the current user can get or update live stream settings. | |
A class to operate the live stream.
Definition at line 60 of file ZoomVideoSDKLiveStreamHelper.h.
- (BOOL) canGetOrUpdateLiveStreamSetting |
Check if the current user can get or update live stream settings.
- (ZoomVideoSDKError) canStartLiveStream |
Check to see if you can start live streaming.
- (ZoomVideoSDKLiveStreamSetting *_Nullable) getCurrentLiveStreamSetting |
Get the current live stream settings for the current session.
- (ZoomVideoSDKError) startLiveStreamWithParams: | (ZoomVideoSDKLiveStreamParams *_Nullable) | param |
Start a live stream of the current session using ZoomVideoSDKLiveStreamParams.
param | The live stream parameters containing URL, key, broadcast URL and settings. |
- (ZoomVideoSDKError) startLiveStreamWithStreamingURL: | (NSString *_Nullable) | streamingURL | |
StreamingKey: | (NSString *_Nullable) | key | |
BroadcastURL: | ("Use startLiveStreamWithParams: instead") | __deprecated_msg |
Call the function to start live stream.
streamingURL | The live stream URL by which you can live the session. |
key | Stream key offered by the third platform on which you want to live stream your session. |
broadcastURL | The URL of live stream website. |
- (ZoomVideoSDKError) stopLiveStream |
Set to stop live streaming.
- (ZoomVideoSDKError) updateLiveStreamSetting: | (ZoomVideoSDKLiveStreamSetting *_Nullable) | setting |
Update the live stream settings for the current session.
setting | The new live stream settings to apply. |