|
@@ -20,6 +20,13 @@ var config = { // eslint-disable-line no-unused-vars
|
20
|
20
|
//focusUserJid: 'focus@auth.jitsi-meet.example.com', // The real JID of focus participant - can be overridden here
|
21
|
21
|
//defaultSipNumber: '', // Default SIP number
|
22
|
22
|
|
|
23
|
+ // The STUN servers that will be used in the peer to peer connections
|
|
24
|
+ p2pStunServers: [
|
|
25
|
+ { urls: "stun:stun.l.google.com:19302" },
|
|
26
|
+ { urls: "stun:stun1.l.google.com:19302" },
|
|
27
|
+ { urls: "stun:stun2.l.google.com:19302" }
|
|
28
|
+ ],
|
|
29
|
+
|
23
|
30
|
// The ID of the jidesha extension for Chrome.
|
24
|
31
|
desktopSharingChromeExtId: null,
|
25
|
32
|
// Whether desktop sharing should be disabled on Chrome.
|
|
@@ -80,5 +87,14 @@ var config = { // eslint-disable-line no-unused-vars
|
80
|
87
|
// disables or enables RTX (RFC 4588) (defaults to false).
|
81
|
88
|
disableRtx: false,
|
82
|
89
|
// Sets the preferred resolution (height) for local video. Defaults to 360.
|
83
|
|
- resolution: 720
|
|
90
|
+ resolution: 720,
|
|
91
|
+ // Enables peer to peer mode. When enabled system will try to establish
|
|
92
|
+ // direct connection given that there are exactly 2 participants in
|
|
93
|
+ // the room. If that succeeds the conference will stop sending data through
|
|
94
|
+ // the JVB and use the peer to peer connection instead. When 3rd participant
|
|
95
|
+ // joins the conference will be moved back to the JVB connection.
|
|
96
|
+ //enableP2P: true
|
|
97
|
+ // How long we're going to wait, before going back to P2P after
|
|
98
|
+ // the 3rd participant has left the conference (to filter out page reload)
|
|
99
|
+ //backToP2PDelay: 5
|
84
|
100
|
};
|