Skip to main content
Version: 0.1.x

Mute All Participants - Android

If you are the host or moderator of a video conference, you may want to mute all the participants at once. This can be useful in various scenarios, such as when you want to deliver a presentation or when there is background noise that is causing distractions.

  • To achieve this, you have to iterate over the list of participants from the Meeting class and call disableMic method from Participant class.
btnMuteAllParticipant!!.setOnClickListener { _: View? ->
var participants: Iterator<Participant> = meeting.participants.values.iterator()
for (i in 0 until meeting.participants.size) {
val participant = participants.next()
participant.disableMic()
}
}
note

Participant who will be muting other participants should have permission allow_mod passed in the token. To know more about permissions visit here.

API Reference​

The API references for all the methods and events utilised in this guide are provided below.

Got a Question? Ask us on discord


Was this helpful?