config: default to 720p (#3269)

This commit is contained in:
Saúl Ibarra Corretgé 2018-07-17 17:18:32 +02:00 committed by virtuacoplenny
parent b25caedce7
commit 13ee67d15c
1 changed files with 3 additions and 3 deletions

View File

@ -99,13 +99,13 @@ var config = {
// used by browsers that return true from lib-jitsi-meet's
// util#browser#usesNewGumFlow. The constraints are independency from
// this config's resolution value. Defaults to requesting an ideal aspect
// ratio of 16:9 with an ideal resolution of 1080p.
// ratio of 16:9 with an ideal resolution of 720.
// constraints: {
// video: {
// aspectRatio: 16 / 9,
// height: {
// ideal: 1080,
// max: 1080,
// ideal: 720,
// max: 720,
// min: 240
// }
// }