On a self hosted Debian 10 Jitsi server (behind NAT firewall), when I check the participants video, I notice “send max 360p”, and “Codecs (A/V): optus, VP8”.
I would like to achieve full screen video of 1080p, if this is possible, but if the user is only sending 360p, I guess this will not happen. Is it possible to send greater than 360p and how would this be achieved?
Can someone please explain in more detail in greater detail than is in the configuration file, for the following options and how these can be changed and how they alter the video which participants send/receive:
disableSimulcast
enableLayerSuspension
maxBitratesVideo
minHeightForQualityLvl
videoQuality [settings]
disabledCodec
preferredCodec: ‘VP9’, (so far I have been unable to get VP9 to be used)
maxBitratesVideo
For example:
// Sets the preferred resolution (height) for local video. Defaults to 720.
resolution: 720,
// resolution of 720p.
constraints: {
video: {
height: {
ideal: 720,
max: 1080,
min: 240
}
}
},
disableSimulcast: true,
enableLayerSuspension: true,
// Specify the settings for video quality optimizations on the client.
videoQuality: {
disabledCodec: ‘H264’,
preferredCodec: ‘VP9’,
maxBitratesVideo: {
low: 200000,
standard: 500000,
high: 1500000
},
minHeightForQualityLvl: {
360: ‘standard’,
720: ‘high’
},
},