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​
-
livestream-started - Whenever broadcasting of meeting started,
livestream-started
event will trigger. -
livestream-stopped - Whenever broadcasting of meeting stopped,
livestream-stopped
event will trigger.
- Kotlin
- Java
object : MeetingEventListener() {
override fun onLivestreamStarted() {
livestreaming = true
// TODO: show indication that meeting livestream is started.
}
override fun onLivestreamStopped() {
livestreaming = false
// TODO: show indication that meeting livestream is stopped.
}
}
new MeetingEventListener() {
@Override
public void onLivestreamStarted() {
livestreaming = true;
// TODO: show indication that meeting livestream is started.
}
@Override
public void onLivestreamStopped() {
livestreaming = false;
// TODO: show indication that meeting livestream is stopped.
}
}
Got a Question? Ask us on discord