Advertisement
Guest User

Untitled

a guest
May 17th, 2018
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.52 KB | None | 0 0
  1. /* eslint-disable no-unused-vars, no-var */
  2.  
  3. var config = {
  4. // Configuration
  5. //
  6.  
  7. // Alternative location for the configuration.
  8. // configLocation: './config.json',
  9.  
  10. // Custom function which given the URL path should return a room name.
  11. // getroomnode: function (path) { return 'someprefixpossiblybasedonpath'; },
  12.  
  13.  
  14. // Connection
  15. //
  16.  
  17. hosts: {
  18. // XMPP domain.
  19. domain: 'meet.roboland-projekt.de',
  20.  
  21. // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
  22. muc: 'conference.meet.roboland-projekt.de'
  23.  
  24. // When using authentication, domain for guest users.
  25. // anonymousdomain: 'guest.example.com',
  26.  
  27. // Domain for authenticated users. Defaults to <domain>.
  28. // authdomain: 'jitsi-meet.example.com',
  29.  
  30. // Jirecon recording component domain.
  31. // jirecon: 'jirecon.jitsi-meet.example.com',
  32.  
  33. // Call control component (Jigasi).
  34. // call_control: 'callcontrol.jitsi-meet.example.com',
  35.  
  36. // Focus component domain. Defaults to focus.<domain>.
  37. // focus: 'focus.jitsi-meet.example.com',
  38. },
  39.  
  40. // BOSH URL. FIXME: use XEP-0156 to discover it.
  41. bosh: '//meet.roboland-projekt.de/http-bind',
  42.  
  43. // The name of client node advertised in XEP-0115 'c' stanza
  44. clientNode: 'http://jitsi.org/jitsimeet',
  45.  
  46. // The real JID of focus participant - can be overridden here
  47. // focusUserJid: 'focus@auth.jitsi-meet.example.com',
  48.  
  49.  
  50. // Testing / experimental features.
  51. //
  52.  
  53. testing: {
  54. // Enables experimental simulcast support on Firefox.
  55. enableFirefoxSimulcast: false,
  56.  
  57. // P2P test mode disables automatic switching to P2P when there are 2
  58. // participants in the conference.
  59. p2pTestMode: false
  60.  
  61. // Enables the test specific features consumed by jitsi-meet-torture
  62. // testMode: false
  63. },
  64.  
  65. // Disables ICE/UDP by filtering out local and remote UDP candidates in
  66. // signalling.
  67. // webrtcIceUdpDisable: false,
  68.  
  69. // Disables ICE/TCP by filtering out local and remote TCP candidates in
  70. // signalling.
  71. // webrtcIceTcpDisable: false,
  72.  
  73.  
  74. // Media
  75. //
  76.  
  77. // Audio
  78.  
  79. // Disable measuring of audio levels.
  80. // disableAudioLevels: false,
  81.  
  82. // Start the conference in audio only mode (no video is being received nor
  83. // sent).
  84. // startAudioOnly: false,
  85.  
  86. // Every participant after the Nth will start audio muted.
  87. // startAudioMuted: 10,
  88.  
  89. // Start calls with audio muted. Unlike the option above, this one is only
  90. // applied locally. FIXME: having these 2 options is confusing.
  91. // startWithAudioMuted: false,
  92.  
  93. // Video
  94.  
  95. // Sets the preferred resolution (height) for local video. Defaults to 720.
  96. // resolution: 720,
  97.  
  98. // w3c spec-compliant video constraints to use for video capture. Currently
  99. // used by browsers that return true from lib-jitsi-meet's
  100. // util#browser#usesNewGumFlow. The constraints are independency from
  101. // this config's resolution value. Defaults to requesting an ideal aspect
  102. // ratio of 16:9 with an ideal resolution of 1080p.
  103. // constraints: {
  104. // video: {
  105. // aspectRatio: 16 / 9,
  106. // height: {
  107. // ideal: 1080,
  108. // max: 1080,
  109. // min: 240
  110. // }
  111. // }
  112. // },
  113.  
  114. // Enable / disable simulcast support.
  115. // disableSimulcast: false,
  116.  
  117. // Suspend sending video if bandwidth estimation is too low. This may cause
  118. // problems with audio playback. Disabled until these are fixed.
  119. disableSuspendVideo: true,
  120.  
  121. // Every participant after the Nth will start video muted.
  122. // startVideoMuted: 10,
  123.  
  124. // Start calls with video muted. Unlike the option above, this one is only
  125. // applied locally. FIXME: having these 2 options is confusing.
  126. // startWithVideoMuted: false,
  127.  
  128. // If set to true, prefer to use the H.264 video codec (if supported).
  129. // Note that it's not recommended to do this because simulcast is not
  130. // supported when using H.264. For 1-to-1 calls this setting is enabled by
  131. // default and can be toggled in the p2p section.
  132. // preferH264: true,
  133.  
  134. // If set to true, disable H.264 video codec by stripping it out of the
  135. // SDP.
  136. // disableH264: false,
  137.  
  138. // Desktop sharing
  139.  
  140. // Enable / disable desktop sharing
  141. // disableDesktopSharing: false,
  142.  
  143. // The ID of the jidesha extension for Chrome.
  144. desktopSharingChromeExtId: null,
  145.  
  146. // Whether desktop sharing should be disabled on Chrome.
  147. desktopSharingChromeDisabled: true,
  148.  
  149. // The media sources to use when using screen sharing with the Chrome
  150. // extension.
  151. desktopSharingChromeSources: [ 'screen', 'window', 'tab' ],
  152.  
  153. // Required version of Chrome extension
  154. desktopSharingChromeMinExtVersion: '0.1',
  155.  
  156. // Whether desktop sharing should be disabled on Firefox.
  157. desktopSharingFirefoxDisabled: false,
  158.  
  159. // Optional desktop sharing frame rate options. Default value: min:5, max:5.
  160. // desktopSharingFrameRate: {
  161. // min: 5,
  162. // max: 5
  163. // },
  164.  
  165. // Try to start calls with screen-sharing instead of camera video.
  166. // startScreenSharing: false,
  167.  
  168. // Recording
  169.  
  170. // Whether to enable recording or not.
  171. // enableRecording: false,
  172.  
  173. // Type for recording: one of jibri or jirecon.
  174. // recordingType: 'jibri',
  175.  
  176. // Misc
  177.  
  178. // Default value for the channel "last N" attribute. -1 for unlimited.
  179. channelLastN: -1,
  180.  
  181. // Disables or enables RTX (RFC 4588) (defaults to false).
  182. // disableRtx: false,
  183.  
  184. // Disables or enables TCC (the default is in Jicofo and set to true)
  185. // (draft-holmer-rmcat-transport-wide-cc-extensions-01). This setting
  186. // affects congestion control, it practically enables send-side bandwidth
  187. // estimations.
  188. // enableTcc: true,
  189.  
  190. // Disables or enables REMB (the default is in Jicofo and set to false)
  191. // (draft-alvestrand-rmcat-remb-03). This setting affects congestion
  192. // control, it practically enables recv-side bandwidth estimations. When
  193. // both TCC and REMB are enabled, TCC takes precedence. When both are
  194. // disabled, then bandwidth estimations are disabled.
  195. // enableRemb: false,
  196.  
  197. // Defines the minimum number of participants to start a call (the default
  198. // is set in Jicofo and set to 2).
  199. // minParticipants: 2,
  200.  
  201. // Use XEP-0215 to fetch STUN and TURN servers.
  202. // useStunTurn: true,
  203.  
  204. // Enable IPv6 support.
  205. // useIPv6: true,
  206.  
  207. // Enables / disables a data communication channel with the Videobridge.
  208. // Values can be 'datachannel', 'websocket', true (treat it as
  209. // 'datachannel'), undefined (treat it as 'datachannel') and false (don't
  210. // open any channel).
  211. // openBridgeChannel: true,
  212.  
  213.  
  214. // UI
  215. //
  216.  
  217. // Use display name as XMPP nickname.
  218. // useNicks: false,
  219.  
  220. // Require users to always specify a display name.
  221. // requireDisplayName: true,
  222.  
  223. // Whether to use a welcome page or not. In case it's false a random room
  224. // will be joined when no room is specified.
  225. enableWelcomePage: true,
  226.  
  227. // Enabling the close page will ignore the welcome page redirection when
  228. // a call is hangup.
  229. // enableClosePage: false,
  230.  
  231. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  232. // disable1On1Mode: false,
  233.  
  234. // The minimum value a video's height (or width, whichever is smaller) needs
  235. // to be in order to be considered high-definition.
  236. minHDHeight: 540,
  237.  
  238. // Default language for the user interface.
  239. // defaultLanguage: 'en',
  240.  
  241. // If true all users without a token will be considered guests and all users
  242. // with token will be considered non-guests. Only guests will be allowed to
  243. // edit their profile.
  244. enableUserRolesBasedOnToken: false,
  245.  
  246. // Message to show the users. Example: 'The service will be down for
  247. // maintenance at 01:00 AM GMT,
  248. // noticeMessage: '',
  249.  
  250.  
  251. // Stats
  252. //
  253.  
  254. // Whether to enable stats collection or not in the TraceablePeerConnection.
  255. // This can be useful for debugging purposes (post-processing/analysis of
  256. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  257. // estimation tests.
  258. // gatherStats: false,
  259.  
  260. // To enable sending statistics to callstats.io you must provide the
  261. // Application ID and Secret.
  262. // callStatsID: '',
  263. // callStatsSecret: '',
  264.  
  265. // enables callstatsUsername to be reported as statsId and used
  266. // by callstats as repoted remote id
  267. // enableStatsID: false
  268.  
  269. // enables sending participants display name to callstats
  270. // enableDisplayNameInStats: false
  271.  
  272.  
  273. // Privacy
  274. //
  275.  
  276. // If third party requests are disabled, no other server will be contacted.
  277. // This means avatars will be locally generated and callstats integration
  278. // will not function.
  279. // disableThirdPartyRequests: false,
  280.  
  281.  
  282. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  283. //
  284.  
  285. p2p: {
  286. // Enables peer to peer mode. When enabled the system will try to
  287. // establish a direct connection when there are exactly 2 participants
  288. // in the room. If that succeeds the conference will stop sending data
  289. // through the JVB and use the peer to peer connection instead. When a
  290. // 3rd participant joins the conference will be moved back to the JVB
  291. // connection.
  292. enabled: true,
  293.  
  294. // Use XEP-0215 to fetch STUN and TURN servers.
  295. // useStunTurn: true,
  296.  
  297. // The STUN servers that will be used in the peer to peer connections
  298. stunServers: [
  299. { urls: 'stun:stun.l.google.com:19302' },
  300. { urls: 'stun:stun1.l.google.com:19302' },
  301. { urls: 'stun:stun2.l.google.com:19302' }
  302. ],
  303.  
  304. // Sets the ICE transport policy for the p2p connection. At the time
  305. // of this writing the list of possible values are 'all' and 'relay',
  306. // but that is subject to change in the future. The enum is defined in
  307. // the WebRTC standard:
  308. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  309. // If not set, the effective value is 'all'.
  310. // iceTransportPolicy: 'all',
  311.  
  312. // If set to true, it will prefer to use H.264 for P2P calls (if H.264
  313. // is supported).
  314. preferH264: true
  315.  
  316. // If set to true, disable H.264 video codec by stripping it out of the
  317. // SDP.
  318. // disableH264: false,
  319.  
  320. // How long we're going to wait, before going back to P2P after the 3rd
  321. // participant has left the conference (to filter out page reload).
  322. // backToP2PDelay: 5
  323. },
  324.  
  325. // A list of scripts to load as lib-jitsi-meet "analytics handlers".
  326. // analyticsScriptUrls: [
  327. // "libs/analytics-ga.js", // google-analytics
  328. // "https://example.com/my-custom-analytics.js"
  329. // ],
  330.  
  331. // The Google Analytics Tracking ID
  332. // googleAnalyticsTrackingId = 'your-tracking-id-here-UA-123456-1',
  333.  
  334. // Information about the jitsi-meet instance we are connecting to, including
  335. // the user region as seen by the server.
  336. deploymentInfo: {
  337. // shard: "shard1",
  338. // region: "europe",
  339. // userRegion: "asia"
  340. }
  341.  
  342. // List of undocumented settings used in jitsi-meet
  343. /**
  344. alwaysVisibleToolbar
  345. autoRecord
  346. autoRecordToken
  347. debug
  348. debugAudioLevels
  349. deploymentInfo
  350. dialInConfCodeUrl
  351. dialInNumbersUrl
  352. dialOutAuthUrl
  353. dialOutCodesUrl
  354. disableRemoteControl
  355. displayJids
  356. enableLocalVideoFlip
  357. etherpad_base
  358. externalConnectUrl
  359. firefox_fake_device
  360. googleApiApplicationClientID
  361. iAmRecorder
  362. iAmSipGateway
  363. peopleSearchQueryTypes
  364. peopleSearchUrl
  365. requireDisplayName
  366. tokenAuthUrl
  367. */
  368.  
  369. // List of undocumented settings used in lib-jitsi-meet
  370. /**
  371. _peerConnStatusOutOfLastNTimeout
  372. _peerConnStatusRtcMuteTimeout
  373. abTesting
  374. avgRtpStatsN
  375. callStatsConfIDNamespace
  376. callStatsCustomScriptUrl
  377. desktopSharingSources
  378. disableAEC
  379. disableAGC
  380. disableAP
  381. disableHPF
  382. disableNS
  383. enableLipSync
  384. enableTalkWhileMuted
  385. forceJVB121Ratio
  386. hiddenDomain
  387. ignoreStartMuted
  388. nick
  389. startBitrate
  390. */
  391. };
  392.  
  393. /* eslint-enable no-unused-vars, no-var */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement