djuka
Member
I set constraints like this:
but on any device I tried, I got recording in 320x240. Even if the communication channel is PERFECT.
What is the purpose of this range if the stream is always with the lowest resolution?
Code:
constraints = {
video:
{
width: {min:320, ideal: 640, max:1920},
height: {min:240, ideal: 480, max:1080},
minBitrate: 200,
maxBitrate: 1800,
frameRate: 20
},
audio: true
}
What is the purpose of this range if the stream is always with the lowest resolution?