Skip to main content
Version: 0.0.x

Set Participant Video Quality - Android

This feature allows participants to set other participant's video quality during the meeting.

Set Quality​

  • setQuality method will accept low, med or high as string parameter.
private fun setQuality()
{
val participants: Iterator<Participant> = meeting!!.participants.values.iterator()
for (i in 0 until meeting!!.participants.size) {
val participant = participants.next()

participant.quality = "low"
//or
participant.quality = "med"
//or
participant.quality = "high"
}
}

Got a Question? Ask us on discord


Was this helpful?