|
@@ -92,6 +92,22 @@ var config = {
|
92
|
92
|
// Sets the preferred resolution (height) for local video. Defaults to 720.
|
93
|
93
|
// resolution: 720,
|
94
|
94
|
|
|
95
|
+ // w3c spec-compliant video constraints to use for video capture. Currently
|
|
96
|
+ // used by browsers that return true from lib-jitsi-meet's
|
|
97
|
+ // RTCBrowserType#usesNewGumFlow. The constraints are independency from
|
|
98
|
+ // this config's resolution value. Defaults to requesting an ideal aspect
|
|
99
|
+ // ratio of 16:9 with an ideal resolution of 1080p.
|
|
100
|
+ // constraints: {
|
|
101
|
+ // video: {
|
|
102
|
+ // aspectRatio: 16 / 9,
|
|
103
|
+ // height: {
|
|
104
|
+ // ideal: 1080,
|
|
105
|
+ // max: 1080,
|
|
106
|
+ // min: 240
|
|
107
|
+ // }
|
|
108
|
+ // }
|
|
109
|
+ // },
|
|
110
|
+
|
95
|
111
|
// Enable / disable simulcast support.
|
96
|
112
|
// disableSimulcast: false,
|
97
|
113
|
|