Skip to main content
Version: 0.1.x

Set Participant Video Quality

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

info

MultiStream is not supported by the Android SDK. Use customTrack instead of setQuality() if you want to change participant's quality who joined using our Android SDK.

To know more about customTrack visit here

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"
}
}