Go Live On Social Media - Android
This feature allows participant to broadcast meeting on various social media platforms such as Facebook or Youtube. This guide will provide an overview of how participant can start and stop broadcasting meeting.
- Start LiveStream - By using
startLivestream()
function, a participant can start broadcasting meeting on various platforms by provding url and stream keys as an argument. - Stop LiveStream - By using
stopLivestream()
function, a participant can stop broadcasting on all platforms.
Start And Stop Live Stream​
- Kotlin
- Java
private val YOUTUBE_RTMP_URL: String? = null
private val YOUTUBE_RTMP_STREAM_KEY: String? = null
//
findViewById<View>(R.id.btnLivestream).setOnClickListener {
if (!livestreaming) {
if (YOUTUBE_RTMP_URL == null || YOUTUBE_RTMP_STREAM_KEY == null) {
throw Error("RTMP url or stream key missing.")
}
val outputs: MutableList<LivestreamOutput> = ArrayList()
outputs.add(LivestreamOutput(YOUTUBE_RTMP_URL, YOUTUBE_RTMP_STREAM_KEY))
meeting!!.startLivestream(outputs)
} else {
meeting!!.stopLivestream()
}
}
private static final String YOUTUBE_RTMP_URL = null;
private static final String YOUTUBE_RTMP_STREAM_KEY = null;
//
findViewById(R.id.btnLivestream).setOnClickListener(view -> {
if (!livestreaming) {
if (YOUTUBE_RTMP_URL == null || YOUTUBE_RTMP_STREAM_KEY == null) {
throw new Error("RTMP url or stream key missing.");
}
List<LivestreamOutput> outputs = new ArrayList<>();
outputs.add(new LivestreamOutput(YOUTUBE_RTMP_URL, YOUTUBE_RTMP_STREAM_KEY));
meeting.startLivestream(outputs);
} else {
meeting.stopLivestream();
}
});
Events​
- onLiveStreamStateChanged - A
onLiveStreamStateChanged
event will be triggered any time the broadcasting state of a meeting changes.
- Kotlin
- Java
object : MeetingEventListener() {
override fun onLivestreamStateChanged(livestreamState: String?) {
when (livestreamState) {
"LIVESTREAM_STARTING" -> Log.d( "LivestreamStateChanged",
"Meeting livestream is starting"
)
"LIVESTREAM_STARTED" -> Log.d( "LivestreamStateChanged",
"Meeting livestream is started"
)
"LIVESTREAM_STOPPING" -> Log.d("LivestreamStateChanged",
"Meeting livestream is stopping"
)
"LIVESTREAM_STOPPED" -> Log.d("LivestreamStateChanged",
"Meeting livestream is stopped"
)
}
}
}
new MeetingEventListener() {
@Override
public void onLivestreamStateChanged(String livestreamState) {
switch (livestreamState) {
case "LIVESTREAM_STARTING":
Log.d("LivestreamStateChanged", "Meeting livestream is starting");
break;
case "LIVESTREAM_STARTED":
Log.d("LivestreamStateChanged", "Meeting livestream is started");
break;
case "LIVESTREAM_STOPPING":
Log.d("LivestreamStateChanged", "Meeting livestream is stopping");
break;
case "LIVESTREAM_STOPPED":
Log.d("LivestreamStateChanged", "Meeting livestream is stopped");
break;
}
}
}
Got a Question? Ask us on discord