Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484
  1. /* eslint-disable no-unused-vars, no-var */
  2. var config = {
  3. // Connection
  4. //
  5. hosts: {
  6. // XMPP domain.
  7. domain: 'jitsi-meet.example.com',
  8. // When using authentication, domain for guest users.
  9. // anonymousdomain: 'guest.example.com',
  10. // Domain for authenticated users. Defaults to <domain>.
  11. // authdomain: 'jitsi-meet.example.com',
  12. // Jirecon recording component domain.
  13. // jirecon: 'jirecon.jitsi-meet.example.com',
  14. // Call control component (Jigasi).
  15. // call_control: 'callcontrol.jitsi-meet.example.com',
  16. // Focus component domain. Defaults to focus.<domain>.
  17. // focus: 'focus.jitsi-meet.example.com',
  18. // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
  19. muc: 'conference.jitsi-meet.example.com'
  20. },
  21. // BOSH URL. FIXME: use XEP-0156 to discover it.
  22. bosh: '//jitsi-meet.example.com/http-bind',
  23. // The name of client node advertised in XEP-0115 'c' stanza
  24. clientNode: 'http://jitsi.org/jitsimeet',
  25. // The real JID of focus participant - can be overridden here
  26. // focusUserJid: 'focus@auth.jitsi-meet.example.com',
  27. // Testing / experimental features.
  28. //
  29. testing: {
  30. // Enables experimental simulcast support on Firefox.
  31. enableFirefoxSimulcast: false,
  32. // P2P test mode disables automatic switching to P2P when there are 2
  33. // participants in the conference.
  34. p2pTestMode: false
  35. // Enables the test specific features consumed by jitsi-meet-torture
  36. // testMode: false
  37. // Disables the auto-play behavior of *all* newly created video element.
  38. // This is useful when the client runs on a host with limited resources.
  39. // noAutoPlayVideo: false
  40. },
  41. // Disables ICE/UDP by filtering out local and remote UDP candidates in
  42. // signalling.
  43. // webrtcIceUdpDisable: false,
  44. // Disables ICE/TCP by filtering out local and remote TCP candidates in
  45. // signalling.
  46. // webrtcIceTcpDisable: false,
  47. // Media
  48. //
  49. // Audio
  50. // Disable measuring of audio levels.
  51. // disableAudioLevels: false,
  52. // Start the conference in audio only mode (no video is being received nor
  53. // sent).
  54. // startAudioOnly: false,
  55. // Every participant after the Nth will start audio muted.
  56. // startAudioMuted: 10,
  57. // Start calls with audio muted. Unlike the option above, this one is only
  58. // applied locally. FIXME: having these 2 options is confusing.
  59. // startWithAudioMuted: false,
  60. // Enabling it (with #params) will disable local audio output of remote
  61. // participants and to enable it back a reload is needed.
  62. // startSilent: false
  63. // Video
  64. // Sets the preferred resolution (height) for local video. Defaults to 720.
  65. // resolution: 720,
  66. // w3c spec-compliant video constraints to use for video capture. Currently
  67. // used by browsers that return true from lib-jitsi-meet's
  68. // util#browser#usesNewGumFlow. The constraints are independency from
  69. // this config's resolution value. Defaults to requesting an ideal aspect
  70. // ratio of 16:9 with an ideal resolution of 720.
  71. // constraints: {
  72. // video: {
  73. // aspectRatio: 16 / 9,
  74. // height: {
  75. // ideal: 720,
  76. // max: 720,
  77. // min: 240
  78. // }
  79. // }
  80. // },
  81. // Enable / disable simulcast support.
  82. // disableSimulcast: false,
  83. // Enable / disable layer suspension. If enabled, endpoints whose HD
  84. // layers are not in use will be suspended (no longer sent) until they
  85. // are requested again.
  86. // enableLayerSuspension: false,
  87. // Every participant after the Nth will start video muted.
  88. // startVideoMuted: 10,
  89. // Start calls with video muted. Unlike the option above, this one is only
  90. // applied locally. FIXME: having these 2 options is confusing.
  91. // startWithVideoMuted: false,
  92. // If set to true, prefer to use the H.264 video codec (if supported).
  93. // Note that it's not recommended to do this because simulcast is not
  94. // supported when using H.264. For 1-to-1 calls this setting is enabled by
  95. // default and can be toggled in the p2p section.
  96. // preferH264: true,
  97. // If set to true, disable H.264 video codec by stripping it out of the
  98. // SDP.
  99. // disableH264: false,
  100. // Desktop sharing
  101. // The ID of the jidesha extension for Chrome.
  102. desktopSharingChromeExtId: null,
  103. // Whether desktop sharing should be disabled on Chrome.
  104. // desktopSharingChromeDisabled: false,
  105. // The media sources to use when using screen sharing with the Chrome
  106. // extension.
  107. desktopSharingChromeSources: [ 'screen', 'window', 'tab' ],
  108. // Required version of Chrome extension
  109. desktopSharingChromeMinExtVersion: '0.1',
  110. // Whether desktop sharing should be disabled on Firefox.
  111. // desktopSharingFirefoxDisabled: false,
  112. // Optional desktop sharing frame rate options. Default value: min:5, max:5.
  113. // desktopSharingFrameRate: {
  114. // min: 5,
  115. // max: 5
  116. // },
  117. // Try to start calls with screen-sharing instead of camera video.
  118. // startScreenSharing: false,
  119. // Recording
  120. // Whether to enable file recording or not.
  121. // fileRecordingsEnabled: false,
  122. // Enable the dropbox integration.
  123. // dropbox: {
  124. // appKey: '<APP_KEY>' // Specify your app key here.
  125. // // A URL to redirect the user to, after authenticating
  126. // // by default uses:
  127. // // 'https://jitsi-meet.example.com/static/oauth.html'
  128. // redirectURI:
  129. // 'https://jitsi-meet.example.com/subfolder/static/oauth.html'
  130. // },
  131. // When integrations like dropbox are enabled only that will be shown,
  132. // by enabling fileRecordingsServiceEnabled, we show both the integrations
  133. // and the generic recording service (its configuration and storage type
  134. // depends on jibri configuration)
  135. // fileRecordingsServiceEnabled: false,
  136. // Whether to show the possibility to share file recording with other people
  137. // (e.g. meeting participants), based on the actual implementation
  138. // on the backend.
  139. // fileRecordingsServiceSharingEnabled: false,
  140. // Whether to enable live streaming or not.
  141. // liveStreamingEnabled: false,
  142. // Transcription (in interface_config,
  143. // subtitles and buttons can be configured)
  144. // transcribingEnabled: false,
  145. // Enables automatic turning on captions when recording is started
  146. // autoCaptionOnRecord: false,
  147. // Misc
  148. // Default value for the channel "last N" attribute. -1 for unlimited.
  149. channelLastN: -1,
  150. // Disables or enables RTX (RFC 4588) (defaults to false).
  151. // disableRtx: false,
  152. // Disables or enables TCC (the default is in Jicofo and set to true)
  153. // (draft-holmer-rmcat-transport-wide-cc-extensions-01). This setting
  154. // affects congestion control, it practically enables send-side bandwidth
  155. // estimations.
  156. // enableTcc: true,
  157. // Disables or enables REMB (the default is in Jicofo and set to false)
  158. // (draft-alvestrand-rmcat-remb-03). This setting affects congestion
  159. // control, it practically enables recv-side bandwidth estimations. When
  160. // both TCC and REMB are enabled, TCC takes precedence. When both are
  161. // disabled, then bandwidth estimations are disabled.
  162. // enableRemb: false,
  163. // Defines the minimum number of participants to start a call (the default
  164. // is set in Jicofo and set to 2).
  165. // minParticipants: 2,
  166. // Use XEP-0215 to fetch STUN and TURN servers.
  167. // useStunTurn: true,
  168. // Enable IPv6 support.
  169. // useIPv6: true,
  170. // Enables / disables a data communication channel with the Videobridge.
  171. // Values can be 'datachannel', 'websocket', true (treat it as
  172. // 'datachannel'), undefined (treat it as 'datachannel') and false (don't
  173. // open any channel).
  174. // openBridgeChannel: true,
  175. // UI
  176. //
  177. // Use display name as XMPP nickname.
  178. // useNicks: false,
  179. // Require users to always specify a display name.
  180. // requireDisplayName: true,
  181. // Whether to use a welcome page or not. In case it's false a random room
  182. // will be joined when no room is specified.
  183. enableWelcomePage: true,
  184. // Enabling the close page will ignore the welcome page redirection when
  185. // a call is hangup.
  186. // enableClosePage: false,
  187. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  188. // disable1On1Mode: false,
  189. // Default language for the user interface.
  190. // defaultLanguage: 'en',
  191. // If true all users without a token will be considered guests and all users
  192. // with token will be considered non-guests. Only guests will be allowed to
  193. // edit their profile.
  194. enableUserRolesBasedOnToken: false,
  195. // Whether or not some features are checked based on token.
  196. // enableFeaturesBasedOnToken: false,
  197. // Enable lock room for all moderators, even when userRolesBasedOnToken is enabled and participants are guests.
  198. // lockRoomGuestEnabled: false,
  199. // When enabled the password used for locking a room is restricted to up to the number of digits specified
  200. // roomPasswordNumberOfDigits: 10,
  201. // default: roomPasswordNumberOfDigits: false,
  202. // Message to show the users. Example: 'The service will be down for
  203. // maintenance at 01:00 AM GMT,
  204. // noticeMessage: '',
  205. // Enables calendar integration, depends on googleApiApplicationClientID
  206. // and microsoftApiApplicationClientID
  207. // enableCalendarIntegration: false,
  208. // Stats
  209. //
  210. // Whether to enable stats collection or not in the TraceablePeerConnection.
  211. // This can be useful for debugging purposes (post-processing/analysis of
  212. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  213. // estimation tests.
  214. // gatherStats: false,
  215. // To enable sending statistics to callstats.io you must provide the
  216. // Application ID and Secret.
  217. // callStatsID: '',
  218. // callStatsSecret: '',
  219. // enables callstatsUsername to be reported as statsId and used
  220. // by callstats as repoted remote id
  221. // enableStatsID: false
  222. // enables sending participants display name to callstats
  223. // enableDisplayNameInStats: false
  224. // Privacy
  225. //
  226. // If third party requests are disabled, no other server will be contacted.
  227. // This means avatars will be locally generated and callstats integration
  228. // will not function.
  229. // disableThirdPartyRequests: false,
  230. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  231. //
  232. p2p: {
  233. // Enables peer to peer mode. When enabled the system will try to
  234. // establish a direct connection when there are exactly 2 participants
  235. // in the room. If that succeeds the conference will stop sending data
  236. // through the JVB and use the peer to peer connection instead. When a
  237. // 3rd participant joins the conference will be moved back to the JVB
  238. // connection.
  239. enabled: true,
  240. // Use XEP-0215 to fetch STUN and TURN servers.
  241. // useStunTurn: true,
  242. // The STUN servers that will be used in the peer to peer connections
  243. stunServers: [
  244. { urls: 'stun:stun.l.google.com:19302' },
  245. { urls: 'stun:stun1.l.google.com:19302' },
  246. { urls: 'stun:stun2.l.google.com:19302' }
  247. ],
  248. // Sets the ICE transport policy for the p2p connection. At the time
  249. // of this writing the list of possible values are 'all' and 'relay',
  250. // but that is subject to change in the future. The enum is defined in
  251. // the WebRTC standard:
  252. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  253. // If not set, the effective value is 'all'.
  254. // iceTransportPolicy: 'all',
  255. // If set to true, it will prefer to use H.264 for P2P calls (if H.264
  256. // is supported).
  257. preferH264: true
  258. // If set to true, disable H.264 video codec by stripping it out of the
  259. // SDP.
  260. // disableH264: false,
  261. // How long we're going to wait, before going back to P2P after the 3rd
  262. // participant has left the conference (to filter out page reload).
  263. // backToP2PDelay: 5
  264. },
  265. analytics: {
  266. // The Google Analytics Tracking ID:
  267. // googleAnalyticsTrackingId: 'your-tracking-id-UA-123456-1'
  268. // The Amplitude APP Key:
  269. // amplitudeAPPKey: '<APP_KEY>'
  270. // Array of script URLs to load as lib-jitsi-meet "analytics handlers".
  271. // scriptURLs: [
  272. // "libs/analytics-ga.min.js", // google-analytics
  273. // "https://example.com/my-custom-analytics.js"
  274. // ],
  275. },
  276. // Information about the jitsi-meet instance we are connecting to, including
  277. // the user region as seen by the server.
  278. deploymentInfo: {
  279. // shard: "shard1",
  280. // region: "europe",
  281. // userRegion: "asia"
  282. }
  283. // Local Recording
  284. //
  285. // localRecording: {
  286. // Enables local recording.
  287. // Additionally, 'localrecording' (all lowercase) needs to be added to
  288. // TOOLBAR_BUTTONS in interface_config.js for the Local Recording
  289. // button to show up on the toolbar.
  290. //
  291. // enabled: true,
  292. //
  293. // The recording format, can be one of 'ogg', 'flac' or 'wav'.
  294. // format: 'flac'
  295. //
  296. // }
  297. // Options related to end-to-end (participant to participant) ping.
  298. // e2eping: {
  299. // // The interval in milliseconds at which pings will be sent.
  300. // // Defaults to 10000, set to <= 0 to disable.
  301. // pingInterval: 10000,
  302. //
  303. // // The interval in milliseconds at which analytics events
  304. // // with the measured RTT will be sent. Defaults to 60000, set
  305. // // to <= 0 to disable.
  306. // analyticsInterval: 60000,
  307. // }
  308. // If set, will attempt to use the provided video input device label when
  309. // triggering a screenshare, instead of proceeding through the normal flow
  310. // for obtaining a desktop stream.
  311. // NOTE: This option is experimental and is currently intended for internal
  312. // use only.
  313. // _desktopSharingSourceDevice: 'sample-id-or-label'
  314. // If true, any checks to handoff to another application will be prevented
  315. // and instead the app will continue to display in the current browser.
  316. // disableDeepLinking: false
  317. // A property to disable the right click context menu for localVideo
  318. // the menu has option to flip the locally seen video for local presentations
  319. // disableLocalVideoFlip: false
  320. // Deployment specific URLs.
  321. // deploymentUrls: {
  322. // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
  323. // // user documentation.
  324. // userDocumentationURL: 'https://docs.example.com/video-meetings.html',
  325. // // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
  326. // // to the specified URL for an app download page.
  327. // downloadAppsUrl: 'https://docs.example.com/our-apps.html'
  328. // }
  329. // List of undocumented settings used in jitsi-meet
  330. /**
  331. _immediateReloadThreshold
  332. autoRecord
  333. autoRecordToken
  334. debug
  335. debugAudioLevels
  336. deploymentInfo
  337. dialInConfCodeUrl
  338. dialInNumbersUrl
  339. dialOutAuthUrl
  340. dialOutCodesUrl
  341. disableRemoteControl
  342. displayJids
  343. etherpad_base
  344. externalConnectUrl
  345. firefox_fake_device
  346. googleApiApplicationClientID
  347. iAmRecorder
  348. iAmSipGateway
  349. microsoftApiApplicationClientID
  350. peopleSearchQueryTypes
  351. peopleSearchUrl
  352. requireDisplayName
  353. tokenAuthUrl
  354. */
  355. // List of undocumented settings used in lib-jitsi-meet
  356. /**
  357. _peerConnStatusOutOfLastNTimeout
  358. _peerConnStatusRtcMuteTimeout
  359. abTesting
  360. avgRtpStatsN
  361. callStatsConfIDNamespace
  362. callStatsCustomScriptUrl
  363. desktopSharingSources
  364. disableAEC
  365. disableAGC
  366. disableAP
  367. disableHPF
  368. disableNS
  369. enableLipSync
  370. enableTalkWhileMuted
  371. forceJVB121Ratio
  372. hiddenDomain
  373. ignoreStartMuted
  374. nick
  375. startBitrate
  376. */
  377. };
  378. /* eslint-enable no-unused-vars, no-var */