Make resolution configurable, fixes #130

This commit is contained in:
Håvar Aambø Fosstveit
2020-03-18 10:21:46 +01:00
parent fd58940916
commit 0f793e1d02
2 changed files with 18 additions and 4 deletions
+11 -2
View File
@@ -14,8 +14,17 @@ var config =
credential : 'example'
}
],
requestTimeout : 10000,
transportOptions :
/**
* If defaultResolution is set, it will override user settings when joining:
* low ~ 320x240
* medium ~ 640x480
* high ~ 1280x720
* veryhigh ~ 1920x1080
* ultra ~ 3840x2560
**/
defaultResolution : 'medium',
requestTimeout : 10000,
transportOptions :
{
tcp : true
},