I’m testing the jitsi with jitsi-torture, and I only see 10 participants with video. Each next participant connects with the video and microphone muted. Yes, user can then turn on the microphone and video after join conference, but the jitsi-torture can’t.
I already changed the settings but it doesn’t help.
config.startVideoMuted = 20;
config.startAudioMuted = 20;
config.lastNLimits = {
5: 20,
25: 15,
50: 10,
70: 5,
90: 2
};
What other setting needs to be changed?
Andrey_Kurochkin:
config.lastNLimits = {
5: 20,
25: 15,
50: 10,
70: 5,
90: 2
};
If you’re setting lasNLimits, then the system is doing exactly what you’re telling it to do.
Maybe I’m not interpreting the settings correctly. Do I understand correctly that the last limit now works like this?
config.lastNLimits = {
5:20
25:15,
from 5 to 25 participants - 20 video streams.
It is 5 to 24 with a limit of 20.
Checkout the description and example in config.js
// Provides a way for the lastN value to be controlled through the UI.
// When startLastN is present, conference starts with a last-n value of startLastN and channelLastN
// value will be used when the quality level is selected using "Manage Video Quality" slider.
// startLastN: 1,
// Provides a way to use different "last N" values based on the number of participants in the conference.
// The keys in an Object represent number of participants and the values are "last N" to be used when number of
// participants gets to or above the number.
//
// For the given example mapping, "last N" will be set to 20 as long as there are at least 5, but less than
// 29 participants in the call and it will be lowered to 15 when the 30th participant joins. The 'channelLastN'
// will be used as default until the first threshold is reached.
//
// lastNLimits: {
// 5: 20,
// 30: 15,
// 50: 10,
// 70: 5,
// 90: 2,
// },
So, I’m right and limit is 20 now. Why do I only see 10 members with video and every next one connects with video muted?
What bridge logs say for those with no video? Suspended due to bandwidth?