Added som comments in config.example.js + alternative config for simulcast

This commit is contained in:
Stefan Otto
2020-05-20 10:14:50 +02:00
parent 2bb5cd53af
commit 185b3d40bd
+16 -3
View File
@@ -26,6 +26,15 @@ var config =
{ scaleResolutionDownBy: 1 }
],
/**
* Alternative simulcast setting:
* [
* { maxBitRate: 50000 },
* { maxBitRate: 1000000 },
* { maxBitRate: 4800000 }
*],
**/
/**
* White listing browsers that support audio output device selection.
* It is not yet fully implemented in Firefox.
@@ -56,8 +65,9 @@ var config =
},
/**
* Set the auto mute / Push To Talk threshold
* default value is 4
* Set max number participants in one room that join
* unmuted. Next participant will join automatically muted
* Default value is 4
*
* Set it to 0 to disable auto mute functionality,
* but use it with caution
@@ -76,9 +86,12 @@ var config =
notificationPosition : 'right',
// Timeout for autohiding topbar and button control bar
hideTimeout : 3000,
// max number of participant that will be visible in
// as speaker
lastN : 4,
mobileLastN : 1,
// Highest number of speakers user can select
// Highest number of lastN the user can select manually in
// userinteface
maxLastN : 5,
// If truthy, users can NOT change number of speakers visible
lockLastN : false,