mirror of
https://github.com/luzifer-docker/jitsi.git
synced 2024-11-09 15:10:02 +00:00
Allow cameras with more than 720p
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
5e9c2b7147
commit
346933c0ab
1 changed files with 11 additions and 0 deletions
|
@ -12,6 +12,17 @@ var config = {
|
|||
enableNoAudioDetection: true,
|
||||
enableNoisyMicDetection: true,
|
||||
|
||||
// Video: Allow cams with more than 720p
|
||||
constraints: {
|
||||
video: {
|
||||
height: {
|
||||
ideal: 720,
|
||||
max: 1080,
|
||||
min: 240
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// Misc
|
||||
channelLastN: 10,
|
||||
|
||||
|
|
Loading…
Reference in a new issue