Record Meeting - Android
Record meeting allows participants to record video & audio during the meeting. The recording files are available in developer dashboard. Any participant can start / stop recording any time during the meeting.
This guide will provide an overview of how to implement start and stop Meeting Recording.
- Start Recording - By using
startRecording()
function, a participant can start meeting recording. - Stop Recording - By using
stopRecording()
function, a participant can stop meeting recording.
Start And Stop Recording​
- Kotlin
- Java
// TODO: change webhookUrl
val webhookUrl = "<webhook-url-here>"
// keep track of recording
val recording = false
findViewById<View>(R.id.btnRecording).setOnClickListener { view: View? ->
if (!recording) {
meeting!!.startRecording(webhookUrl)
} else {
meeting!!.stopRecording()
}
}
// TODO: change webhookUrl
String webhookUrl = "<webhook-url-here>";
// keep track of recording
boolean recording = false;
findViewById(R.id.btnRecording).setOnClickListener(view -> {
if (!recording) {
meeting.startRecording(webhookUrl);
} else {
meeting.stopRecording();
}
});
Events​
-
recording-started - Whenever any participant start meeting recording, then
recording-started
event will trigger. -
recording-stopped - Whenever any participant stop meeting recording, then
recording-stopped
event will trigger.
- Kotlin
- Java
object : MeetingEventListener() {
override fun onRecordingStarted() {
recording = true
// TODO: show indication that meeting recording is started.
}
override fun onRecordingStopped() {
recording = false
// TODO: show indication that meeting recording is stopped.
}
}
new MeetingEventListener() {
@Override
public void onRecordingStarted() {
recording = true;
// TODO: show indication that meeting recording is started.
}
@Override
public void onRecordingStopped() {
recording = false;
// TODO: show indication that meeting recording is stopped.
}
}
Got a Question? Ask us on discord