Allow cameras with more than 720p

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2020-05-06 18:16:16 +02:00
parent 5e9c2b7147
commit 346933c0ab
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

View File

@ -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,