I'm investigating Kurento Media Server 6 and now playing with Tutorials. I have noticed that quality of stream is very poor. I have switched to higher resolution but issue remains. I'm connected to server in network with bandwidth 100/100mbps and stream must be crystal clear.I think somethere in settings of KMS 6 default bit-rate are set.I tried to find in documentation and in tutorials some kind of method which sets bit-rate, but did not found. How and there I can change default bit-rate of stream(if it is possible)?
As was suggested bellow I tried to set bandwith in nodejs one-to-many demo server.js on presenter creation:
webRtcEndpoint.setMinVideoSendBandwidth(1000, function(error) {
if (error) {
stop(sessionId);
return callback(error);
}
});
Quality still very poor, nothing changed at all(Demo server was restarted to reflect changes in code). Am I doing it right?