Mute All Participants - iOS
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 calldisableMic
method fromParticipant
class.
- Swift
class MeetingViewController {
//Button when tapped will turn off mic of all participants
@IBAction func muteAllButtonTapped(_ sender: Any) {
participants.forEach { $0.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