Video SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKLiveStreamParams.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
10 public String streamUrl;
11
15 public String key;
16
20 public String broadcastUrl;
21
26
32 this.streamUrl = null;
33 this.key = null;
34 this.broadcastUrl = null;
35 this.setting = new ZoomVideoSDKLiveStreamSetting();
36 }
37
46 this.streamUrl = streamUrl;
47 this.key = key;
48 this.broadcastUrl = broadcastUrl;
49 this.setting = setting != null ? setting : new ZoomVideoSDKLiveStreamSetting();
50 }
51}
Represents the parameters needed to start a Zoom Video SDK live stream.
ZoomVideoSDKLiveStreamSetting setting
Live stream settings including layout and close caption options.
ZoomVideoSDKLiveStreamParams(String streamUrl, String key, String broadcastUrl, ZoomVideoSDKLiveStreamSetting setting)
Constructor with parameters for ZoomVideoSDKLiveStreamParams.
ZoomVideoSDKLiveStreamParams()
Default constructor for ZoomVideoSDKLiveStreamParams. Initializes all parameters to null and creates ...
String streamUrl
The live stream URL where the stream will be sent (e.g., YouTube, Facebook Live).
String broadcastUrl
The live stream broadcast URL where viewers can watch the stream.
String key
The live stream key for authentication with the streaming platform.
Represents the settings for a Zoom Video SDK live stream.