You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.js 42KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987
  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. // Focus component domain. Defaults to focus.<domain>.
  13. // focus: 'focus.jitsi-meet.example.com',
  14. // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
  15. muc: 'conference.jitsi-meet.example.com'
  16. },
  17. // BOSH URL. FIXME: use XEP-0156 to discover it.
  18. bosh: '//jitsi-meet.example.com/http-bind',
  19. // Websocket URL
  20. // websocket: 'wss://jitsi-meet.example.com/xmpp-websocket',
  21. // The real JID of focus participant - can be overridden here
  22. // Do not change username - FIXME: Make focus username configurable
  23. // https://github.com/jitsi/jitsi-meet/issues/7376
  24. // focusUserJid: 'focus@auth.jitsi-meet.example.com',
  25. // Testing / experimental features.
  26. //
  27. testing: {
  28. // Disables the End to End Encryption feature. Useful for debugging
  29. // issues related to insertable streams.
  30. // disableE2EE: false,
  31. // P2P test mode disables automatic switching to P2P when there are 2
  32. // participants in the conference.
  33. p2pTestMode: false
  34. // Enables the test specific features consumed by jitsi-meet-torture
  35. // testMode: false
  36. // Disables the auto-play behavior of *all* newly created video element.
  37. // This is useful when the client runs on a host with limited resources.
  38. // noAutoPlayVideo: false
  39. // Enable / disable 500 Kbps bitrate cap on desktop tracks. When enabled,
  40. // simulcast is turned off for the desktop share. If presenter is turned
  41. // on while screensharing is in progress, the max bitrate is automatically
  42. // adjusted to 2.5 Mbps. This takes a value between 0 and 1 which determines
  43. // the probability for this to be enabled. This setting has been deprecated.
  44. // desktopSharingFrameRate.max now determines whether simulcast will be enabled
  45. // or disabled for the screenshare.
  46. // capScreenshareBitrate: 1 // 0 to disable - deprecated.
  47. // Enable callstats only for a percentage of users.
  48. // This takes a value between 0 and 100 which determines the probability for
  49. // the callstats to be enabled.
  50. // callStatsThreshold: 5 // enable callstats for 5% of the users.
  51. },
  52. // Enables reactions feature.
  53. // enableReactions: false,
  54. // Disables polls feature.
  55. // disablePolls: false,
  56. // Disables ICE/UDP by filtering out local and remote UDP candidates in
  57. // signalling.
  58. // webrtcIceUdpDisable: false,
  59. // Disables ICE/TCP by filtering out local and remote TCP candidates in
  60. // signalling.
  61. // webrtcIceTcpDisable: false,
  62. // Media
  63. //
  64. // Enable unified plan implementation support on Chromium based browsers.
  65. // enableUnifiedOnChrome: false,
  66. // Audio
  67. // Disable measuring of audio levels.
  68. // disableAudioLevels: false,
  69. // audioLevelsInterval: 200,
  70. // Enabling this will run the lib-jitsi-meet no audio detection module which
  71. // will notify the user if the current selected microphone has no audio
  72. // input and will suggest another valid device if one is present.
  73. enableNoAudioDetection: true,
  74. // Enabling this will show a "Save Logs" link in the GSM popover that can be
  75. // used to collect debug information (XMPP IQs, SDP offer/answer cycles)
  76. // about the call.
  77. // enableSaveLogs: false,
  78. // Enabling this will hide the "Show More" link in the GSM popover that can be
  79. // used to display more statistics about the connection (IP, Port, protocol, etc).
  80. // disableShowMoreStats: true,
  81. // Enabling this will run the lib-jitsi-meet noise detection module which will
  82. // notify the user if there is noise, other than voice, coming from the current
  83. // selected microphone. The purpose it to let the user know that the input could
  84. // be potentially unpleasant for other meeting participants.
  85. enableNoisyMicDetection: true,
  86. // Start the conference in audio only mode (no video is being received nor
  87. // sent).
  88. // startAudioOnly: false,
  89. // Every participant after the Nth will start audio muted.
  90. // startAudioMuted: 10,
  91. // Start calls with audio muted. Unlike the option above, this one is only
  92. // applied locally. FIXME: having these 2 options is confusing.
  93. // startWithAudioMuted: false,
  94. // Enabling it (with #params) will disable local audio output of remote
  95. // participants and to enable it back a reload is needed.
  96. // startSilent: false
  97. // Enables support for opus-red (redundancy for Opus).
  98. // enableOpusRed: false,
  99. // Specify audio quality stereo and opusMaxAverageBitrate values in order to enable HD audio.
  100. // Beware, by doing so, you are disabling echo cancellation, noise suppression and AGC.
  101. // audioQuality: {
  102. // stereo: false,
  103. // opusMaxAverageBitrate: null // Value to fit the 6000 to 510000 range.
  104. // },
  105. // Video
  106. // Sets the preferred resolution (height) for local video. Defaults to 720.
  107. // resolution: 720,
  108. // Specifies whether there will be a search field in speaker stats or not
  109. // disableSpeakerStatsSearch: false,
  110. // How many participants while in the tile view mode, before the receiving video quality is reduced from HD to SD.
  111. // Use -1 to disable.
  112. // maxFullResolutionParticipants: 2,
  113. // w3c spec-compliant video constraints to use for video capture. Currently
  114. // used by browsers that return true from lib-jitsi-meet's
  115. // util#browser#usesNewGumFlow. The constraints are independent from
  116. // this config's resolution value. Defaults to requesting an ideal
  117. // resolution of 720p.
  118. // constraints: {
  119. // video: {
  120. // height: {
  121. // ideal: 720,
  122. // max: 720,
  123. // min: 240
  124. // }
  125. // }
  126. // },
  127. // Enable / disable simulcast support.
  128. // disableSimulcast: false,
  129. // Enable / disable layer suspension. If enabled, endpoints whose HD layers are not in use will be suspended
  130. // (no longer sent) until they are requested again. This is enabled by default. This must be enabled for screen
  131. // sharing to work as expected on Chrome. Disabling this might result in low resolution screenshare being sent
  132. // by the client.
  133. // enableLayerSuspension: false,
  134. // Every participant after the Nth will start video muted.
  135. // startVideoMuted: 10,
  136. // Start calls with video muted. Unlike the option above, this one is only
  137. // applied locally. FIXME: having these 2 options is confusing.
  138. // startWithVideoMuted: false,
  139. // If set to true, prefer to use the H.264 video codec (if supported).
  140. // Note that it's not recommended to do this because simulcast is not
  141. // supported when using H.264. For 1-to-1 calls this setting is enabled by
  142. // default and can be toggled in the p2p section.
  143. // This option has been deprecated, use preferredCodec under videoQuality section instead.
  144. // preferH264: true,
  145. // If set to true, disable H.264 video codec by stripping it out of the
  146. // SDP.
  147. // disableH264: false,
  148. // Desktop sharing
  149. // Optional desktop sharing frame rate options. Default value: min:5, max:5.
  150. // desktopSharingFrameRate: {
  151. // min: 5,
  152. // max: 5
  153. // },
  154. // Try to start calls with screen-sharing instead of camera video.
  155. // startScreenSharing: false,
  156. // Recording
  157. // Whether to enable file recording or not.
  158. // fileRecordingsEnabled: false,
  159. // Enable the dropbox integration.
  160. // dropbox: {
  161. // appKey: '<APP_KEY>' // Specify your app key here.
  162. // // A URL to redirect the user to, after authenticating
  163. // // by default uses:
  164. // // 'https://jitsi-meet.example.com/static/oauth.html'
  165. // redirectURI:
  166. // 'https://jitsi-meet.example.com/subfolder/static/oauth.html'
  167. // },
  168. // When integrations like dropbox are enabled only that will be shown,
  169. // by enabling fileRecordingsServiceEnabled, we show both the integrations
  170. // and the generic recording service (its configuration and storage type
  171. // depends on jibri configuration)
  172. // fileRecordingsServiceEnabled: false,
  173. // Whether to show the possibility to share file recording with other people
  174. // (e.g. meeting participants), based on the actual implementation
  175. // on the backend.
  176. // fileRecordingsServiceSharingEnabled: false,
  177. // Whether to enable live streaming or not.
  178. // liveStreamingEnabled: false,
  179. // Transcription (in interface_config,
  180. // subtitles and buttons can be configured)
  181. // transcribingEnabled: false,
  182. // If true transcriber will use the application language.
  183. // The application language is either explicitly set by participants in their settings or automatically
  184. // detected based on the environment, e.g. if the app is opened in a chrome instance which is using french as its
  185. // default language then transcriptions for that participant will be in french.
  186. // Defaults to true.
  187. // transcribeWithAppLanguage: true,
  188. // Transcriber language. This settings will only work if "transcribeWithAppLanguage" is explicitly set to false.
  189. // Available languages can be found in lang/language.json.
  190. // preferredTranscribeLanguage: 'en',
  191. // Enables automatic turning on captions when recording is started
  192. // autoCaptionOnRecord: false,
  193. // Misc
  194. // Default value for the channel "last N" attribute. -1 for unlimited.
  195. channelLastN: -1,
  196. // Provides a way for the lastN value to be controlled through the UI.
  197. // When startLastN is present, conference starts with a last-n value of startLastN and channelLastN
  198. // value will be used when the quality level is selected using "Manage Video Quality" slider.
  199. // startLastN: 1,
  200. // Provides a way to use different "last N" values based on the number of participants in the conference.
  201. // The keys in an Object represent number of participants and the values are "last N" to be used when number of
  202. // participants gets to or above the number.
  203. //
  204. // For the given example mapping, "last N" will be set to 20 as long as there are at least 5, but less than
  205. // 29 participants in the call and it will be lowered to 15 when the 30th participant joins. The 'channelLastN'
  206. // will be used as default until the first threshold is reached.
  207. //
  208. // lastNLimits: {
  209. // 5: 20,
  210. // 30: 15,
  211. // 50: 10,
  212. // 70: 5,
  213. // 90: 2
  214. // },
  215. // Provides a way to translate the legacy bridge signaling messages, 'LastNChangedEvent',
  216. // 'SelectedEndpointsChangedEvent' and 'ReceiverVideoConstraint' into the new 'ReceiverVideoConstraints' message
  217. // that invokes the new bandwidth allocation algorithm in the bridge which is described here
  218. // - https://github.com/jitsi/jitsi-videobridge/blob/master/doc/allocation.md.
  219. // useNewBandwidthAllocationStrategy: false,
  220. // Specify the settings for video quality optimizations on the client.
  221. // videoQuality: {
  222. // // Provides a way to prevent a video codec from being negotiated on the JVB connection. The codec specified
  223. // // here will be removed from the list of codecs present in the SDP answer generated by the client. If the
  224. // // same codec is specified for both the disabled and preferred option, the disable settings will prevail.
  225. // // Note that 'VP8' cannot be disabled since it's a mandatory codec, the setting will be ignored in this case.
  226. // disabledCodec: 'H264',
  227. //
  228. // // Provides a way to set a preferred video codec for the JVB connection. If 'H264' is specified here,
  229. // // simulcast will be automatically disabled since JVB doesn't support H264 simulcast yet. This will only
  230. // // rearrange the the preference order of the codecs in the SDP answer generated by the browser only if the
  231. // // preferred codec specified here is present. Please ensure that the JVB offers the specified codec for this
  232. // // to take effect.
  233. // preferredCodec: 'VP8',
  234. //
  235. // // Provides a way to enforce the preferred codec for the conference even when the conference has endpoints
  236. // // that do not support the preferred codec. For example, older versions of Safari do not support VP9 yet.
  237. // // This will result in Safari not being able to decode video from endpoints sending VP9 video.
  238. // // When set to false, the conference falls back to VP8 whenever there is an endpoint that doesn't support the
  239. // // preferred codec and goes back to the preferred codec when that endpoint leaves.
  240. // // enforcePreferredCodec: false,
  241. //
  242. // // Provides a way to configure the maximum bitrates that will be enforced on the simulcast streams for
  243. // // video tracks. The keys in the object represent the type of the stream (LD, SD or HD) and the values
  244. // // are the max.bitrates to be set on that particular type of stream. The actual send may vary based on
  245. // // the available bandwidth calculated by the browser, but it will be capped by the values specified here.
  246. // // This is currently not implemented on app based clients on mobile.
  247. // maxBitratesVideo: {
  248. // H264: {
  249. // low: 200000,
  250. // standard: 500000,
  251. // high: 1500000
  252. // },
  253. // VP8 : {
  254. // low: 200000,
  255. // standard: 500000,
  256. // high: 1500000
  257. // },
  258. // VP9: {
  259. // low: 100000,
  260. // standard: 300000,
  261. // high: 1200000
  262. // }
  263. // },
  264. //
  265. // // The options can be used to override default thresholds of video thumbnail heights corresponding to
  266. // // the video quality levels used in the application. At the time of this writing the allowed levels are:
  267. // // 'low' - for the low quality level (180p at the time of this writing)
  268. // // 'standard' - for the medium quality level (360p)
  269. // // 'high' - for the high quality level (720p)
  270. // // The keys should be positive numbers which represent the minimal thumbnail height for the quality level.
  271. // //
  272. // // With the default config value below the application will use 'low' quality until the thumbnails are
  273. // // at least 360 pixels tall. If the thumbnail height reaches 720 pixels then the application will switch to
  274. // // the high quality.
  275. // minHeightForQualityLvl: {
  276. // 360: 'standard',
  277. // 720: 'high'
  278. // },
  279. //
  280. // // Provides a way to resize the desktop track to 720p (if it is greater than 720p) before creating a canvas
  281. // // for the presenter mode (camera picture-in-picture mode with screenshare).
  282. // resizeDesktopForPresenter: false
  283. // },
  284. // // Options for the recording limit notification.
  285. // recordingLimit: {
  286. //
  287. // // The recording limit in minutes. Note: This number appears in the notification text
  288. // // but doesn't enforce the actual recording time limit. This should be configured in
  289. // // jibri!
  290. // limit: 60,
  291. //
  292. // // The name of the app with unlimited recordings.
  293. // appName: 'Unlimited recordings APP',
  294. //
  295. // // The URL of the app with unlimited recordings.
  296. // appURL: 'https://unlimited.recordings.app.com/'
  297. // },
  298. // Disables or enables RTX (RFC 4588) (defaults to false).
  299. // disableRtx: false,
  300. // Disables or enables TCC support in this client (default: enabled).
  301. // enableTcc: true,
  302. // Disables or enables REMB support in this client (default: enabled).
  303. // enableRemb: true,
  304. // Enables ICE restart logic in LJM and displays the page reload overlay on
  305. // ICE failure. Current disabled by default because it's causing issues with
  306. // signaling when Octo is enabled. Also when we do an "ICE restart"(which is
  307. // not a real ICE restart), the client maintains the TCC sequence number
  308. // counter, but the bridge resets it. The bridge sends media packets with
  309. // TCC sequence numbers starting from 0.
  310. // enableIceRestart: false,
  311. // Enables forced reload of the client when the call is migrated as a result of
  312. // the bridge going down.
  313. // enableForcedReload: true,
  314. // Use TURN/UDP servers for the jitsi-videobridge connection (by default
  315. // we filter out TURN/UDP because it is usually not needed since the
  316. // bridge itself is reachable via UDP)
  317. // useTurnUdp: false
  318. // Enable support for encoded transform in supported browsers. This allows
  319. // E2EE to work in Safari if the corresponding flag is enabled in the browser.
  320. // Experimental.
  321. // enableEncodedTransformSupport: false,
  322. // UI
  323. //
  324. // Disables responsive tiles.
  325. // disableResponsiveTiles: false,
  326. // Hides lobby button
  327. // hideLobbyButton: false,
  328. // Require users to always specify a display name.
  329. // requireDisplayName: true,
  330. // Whether to use a welcome page or not. In case it's false a random room
  331. // will be joined when no room is specified.
  332. enableWelcomePage: true,
  333. // Disable app shortcuts that are registered upon joining a conference
  334. // disableShortcuts: false,
  335. // Disable initial browser getUserMedia requests.
  336. // This is useful for scenarios where users might want to start a conference for screensharing only
  337. // disableInitialGUM: false,
  338. // Enabling the close page will ignore the welcome page redirection when
  339. // a call is hangup.
  340. // enableClosePage: false,
  341. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  342. // Setting this to null, will also disable showing the remote videos
  343. // when the toolbar is shown on mouse movements
  344. // disable1On1Mode: null | false | true,
  345. // Default language for the user interface.
  346. // defaultLanguage: 'en',
  347. // Disables profile and the edit of all fields from the profile settings (display name and email)
  348. // disableProfile: false,
  349. // Whether or not some features are checked based on token.
  350. // enableFeaturesBasedOnToken: false,
  351. // When enabled the password used for locking a room is restricted to up to the number of digits specified
  352. // roomPasswordNumberOfDigits: 10,
  353. // default: roomPasswordNumberOfDigits: false,
  354. // Message to show the users. Example: 'The service will be down for
  355. // maintenance at 01:00 AM GMT,
  356. // noticeMessage: '',
  357. // Enables calendar integration, depends on googleApiApplicationClientID
  358. // and microsoftApiApplicationClientID
  359. // enableCalendarIntegration: false,
  360. // When 'true', it shows an intermediate page before joining, where the user can configure their devices.
  361. // prejoinPageEnabled: false,
  362. // If etherpad integration is enabled, setting this to true will
  363. // automatically open the etherpad when a participant joins. This
  364. // does not affect the mobile app since opening an etherpad
  365. // obscures the conference controls -- it's better to let users
  366. // choose to open the pad on their own in that case.
  367. // openSharedDocumentOnJoin: false,
  368. // If true, shows the unsafe room name warning label when a room name is
  369. // deemed unsafe (due to the simplicity in the name) and a password is not
  370. // set or the lobby is not enabled.
  371. // enableInsecureRoomNameWarning: false,
  372. // Whether to automatically copy invitation URL after creating a room.
  373. // Document should be focused for this option to work
  374. // enableAutomaticUrlCopy: false,
  375. // Base URL for a Gravatar-compatible service. Defaults to libravatar.
  376. // gravatarBaseURL: 'https://seccdn.libravatar.org/avatar/',
  377. // App name to be displayed in the invitation email subject, as an alternative to
  378. // interfaceConfig.APP_NAME.
  379. // inviteAppName: null,
  380. // Moved from interfaceConfig(TOOLBAR_BUTTONS).
  381. // The name of the toolbar buttons to display in the toolbar, including the
  382. // "More actions" menu. If present, the button will display. Exceptions are
  383. // "livestreaming" and "recording" which also require being a moderator and
  384. // some other values in config.js to be enabled. Also, the "profile" button will
  385. // not display for users with a JWT.
  386. // Notes:
  387. // - it's impossible to choose which buttons go in the "More actions" menu
  388. // - it's impossible to control the placement of buttons
  389. // - 'desktop' controls the "Share your screen" button
  390. // - if `toolbarButtons` is undefined, we fallback to enabling all buttons on the UI
  391. // toolbarButtons: [
  392. // 'camera',
  393. // 'chat',
  394. // 'closedcaptions',
  395. // 'desktop',
  396. // 'download',
  397. // 'embedmeeting',
  398. // 'etherpad',
  399. // 'feedback',
  400. // 'filmstrip',
  401. // 'fullscreen',
  402. // 'hangup',
  403. // 'help',
  404. // 'invite',
  405. // 'livestreaming',
  406. // 'microphone',
  407. // 'mute-everyone',
  408. // 'mute-video-everyone',
  409. // 'participants-pane',
  410. // 'profile',
  411. // 'raisehand',
  412. // 'recording',
  413. // 'security',
  414. // 'select-background',
  415. // 'settings',
  416. // 'shareaudio',
  417. // 'sharedvideo',
  418. // 'shortcuts',
  419. // 'stats',
  420. // 'tileview',
  421. // 'toggle-camera',
  422. // 'videoquality',
  423. // '__end'
  424. // ],
  425. // List of pre meeting screens buttons to hide. The values must be one or more of the 5 allowed buttons:
  426. // 'microphone', 'camera', 'select-background', 'invite', 'settings'
  427. // hiddenPremeetingButtons: [],
  428. // Stats
  429. //
  430. // Whether to enable stats collection or not in the TraceablePeerConnection.
  431. // This can be useful for debugging purposes (post-processing/analysis of
  432. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  433. // estimation tests.
  434. // gatherStats: false,
  435. // The interval at which PeerConnection.getStats() is called. Defaults to 10000
  436. // pcStatsInterval: 10000,
  437. // To enable sending statistics to callstats.io you must provide the
  438. // Application ID and Secret.
  439. // callStatsID: '',
  440. // callStatsSecret: '',
  441. // The callstats initialize config params as described in the API:
  442. // https://docs.callstats.io/docs/javascript#callstatsinitialize-with-app-secret
  443. // callStatsConfigParams: {
  444. // disableBeforeUnloadHandler: true, // disables callstats.js's window.onbeforeunload parameter.
  445. // applicationVersion: "app_version", // Application version specified by the developer.
  446. // disablePrecalltest: true, // disables the pre-call test, it is enabled by default.
  447. // siteID: "siteID", // The name/ID of the site/campus from where the call/pre-call test is made.
  448. // additionalIDs: { // additionalIDs object, contains application related IDs.
  449. // customerID: "Customer Identifier. Example, walmart.",
  450. // tenantID: "Tenant Identifier. Example, monster.",
  451. // productName: "Product Name. Example, Jitsi.",
  452. // meetingsName: "Meeting Name. Example, Jitsi loves callstats.",
  453. // serverName: "Server/MiddleBox Name. Example, jvb-prod-us-east-mlkncws12.",
  454. // pbxID: "PBX Identifier. Example, walmart.",
  455. // pbxExtensionID: "PBX Extension Identifier. Example, 5625.",
  456. // fqExtensionID: "Fully qualified Extension Identifier. Example, +71 (US) +5625.",
  457. // sessionID: "Session Identifier. Example, session-12-34"
  458. // },
  459. // collectLegacyStats: true, //enables the collection of legacy stats in chrome browser
  460. // collectIP: true //enables the collection localIP address
  461. // },
  462. // Enables sending participants' display names to callstats
  463. // enableDisplayNameInStats: false,
  464. // Enables sending participants' emails (if available) to callstats and other analytics
  465. // enableEmailInStats: false,
  466. // Controls the percentage of automatic feedback shown to participants when callstats is enabled.
  467. // The default value is 100%. If set to 0, no automatic feedback will be requested
  468. // feedbackPercentage: 100,
  469. // Privacy
  470. //
  471. // If third party requests are disabled, no other server will be contacted.
  472. // This means avatars will be locally generated and callstats integration
  473. // will not function.
  474. // disableThirdPartyRequests: false,
  475. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  476. //
  477. p2p: {
  478. // Enables peer to peer mode. When enabled the system will try to
  479. // establish a direct connection when there are exactly 2 participants
  480. // in the room. If that succeeds the conference will stop sending data
  481. // through the JVB and use the peer to peer connection instead. When a
  482. // 3rd participant joins the conference will be moved back to the JVB
  483. // connection.
  484. enabled: true,
  485. // Enable unified plan implementation support on Chromium for p2p connection.
  486. // enableUnifiedOnChrome: false,
  487. // Sets the ICE transport policy for the p2p connection. At the time
  488. // of this writing the list of possible values are 'all' and 'relay',
  489. // but that is subject to change in the future. The enum is defined in
  490. // the WebRTC standard:
  491. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  492. // If not set, the effective value is 'all'.
  493. // iceTransportPolicy: 'all',
  494. // If set to true, it will prefer to use H.264 for P2P calls (if H.264
  495. // is supported). This setting is deprecated, use preferredCodec instead.
  496. // preferH264: true,
  497. // Provides a way to set the video codec preference on the p2p connection. Acceptable
  498. // codec values are 'VP8', 'VP9' and 'H264'.
  499. // preferredCodec: 'H264',
  500. // If set to true, disable H.264 video codec by stripping it out of the
  501. // SDP. This setting is deprecated, use disabledCodec instead.
  502. // disableH264: false,
  503. // Provides a way to prevent a video codec from being negotiated on the p2p connection.
  504. // disabledCodec: '',
  505. // How long we're going to wait, before going back to P2P after the 3rd
  506. // participant has left the conference (to filter out page reload).
  507. // backToP2PDelay: 5,
  508. // The STUN servers that will be used in the peer to peer connections
  509. stunServers: [
  510. // { urls: 'stun:jitsi-meet.example.com:3478' },
  511. { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' }
  512. ]
  513. },
  514. analytics: {
  515. // True if the analytics should be disabled
  516. // disabled: false,
  517. // The Google Analytics Tracking ID:
  518. // googleAnalyticsTrackingId: 'your-tracking-id-UA-123456-1'
  519. // Matomo configuration:
  520. // matomoEndpoint: 'https://your-matomo-endpoint/',
  521. // matomoSiteID: '42',
  522. // The Amplitude APP Key:
  523. // amplitudeAPPKey: '<APP_KEY>'
  524. // Configuration for the rtcstats server:
  525. // By enabling rtcstats server every time a conference is joined the rtcstats
  526. // module connects to the provided rtcstatsEndpoint and sends statistics regarding
  527. // PeerConnection states along with getStats metrics polled at the specified
  528. // interval.
  529. // rtcstatsEnabled: true,
  530. // In order to enable rtcstats one needs to provide a endpoint url.
  531. // rtcstatsEndpoint: wss://rtcstats-server-pilot.jitsi.net/,
  532. // The interval at which rtcstats will poll getStats, defaults to 1000ms.
  533. // If the value is set to 0 getStats won't be polled and the rtcstats client
  534. // will only send data related to RTCPeerConnection events.
  535. // rtcstatsPolIInterval: 1000,
  536. // Array of script URLs to load as lib-jitsi-meet "analytics handlers".
  537. // scriptURLs: [
  538. // "libs/analytics-ga.min.js", // google-analytics
  539. // "https://example.com/my-custom-analytics.js"
  540. // ],
  541. },
  542. // Logs that should go be passed through the 'log' event if a handler is defined for it
  543. // apiLogLevels: ['warn', 'log', 'error', 'info', 'debug'],
  544. // Information about the jitsi-meet instance we are connecting to, including
  545. // the user region as seen by the server.
  546. deploymentInfo: {
  547. // shard: "shard1",
  548. // region: "europe",
  549. // userRegion: "asia"
  550. },
  551. // Decides whether the start/stop recording audio notifications should play on record.
  552. // disableRecordAudioNotification: false,
  553. // Disables the sounds that play when other participants join or leave the
  554. // conference (if set to true, these sounds will not be played).
  555. // disableJoinLeaveSounds: false,
  556. // Disables the sounds that play when a chat message is received.
  557. // disableIncomingMessageSound: false,
  558. // Information for the chrome extension banner
  559. // chromeExtensionBanner: {
  560. // // The chrome extension to be installed address
  561. // url: 'https://chrome.google.com/webstore/detail/jitsi-meetings/kglhbbefdnlheedjiejgomgmfplipfeb',
  562. // // Extensions info which allows checking if they are installed or not
  563. // chromeExtensionsInfo: [
  564. // {
  565. // id: 'kglhbbefdnlheedjiejgomgmfplipfeb',
  566. // path: 'jitsi-logo-48x48.png'
  567. // }
  568. // ]
  569. // },
  570. // Local Recording
  571. //
  572. // localRecording: {
  573. // Enables local recording.
  574. // Additionally, 'localrecording' (all lowercase) needs to be added to
  575. // the `toolbarButtons`-array for the Local Recording button to show up
  576. // on the toolbar.
  577. //
  578. // enabled: true,
  579. //
  580. // The recording format, can be one of 'ogg', 'flac' or 'wav'.
  581. // format: 'flac'
  582. //
  583. // },
  584. // Options related to end-to-end (participant to participant) ping.
  585. // e2eping: {
  586. // // The interval in milliseconds at which pings will be sent.
  587. // // Defaults to 10000, set to <= 0 to disable.
  588. // pingInterval: 10000,
  589. //
  590. // // The interval in milliseconds at which analytics events
  591. // // with the measured RTT will be sent. Defaults to 60000, set
  592. // // to <= 0 to disable.
  593. // analyticsInterval: 60000,
  594. // },
  595. // If set, will attempt to use the provided video input device label when
  596. // triggering a screenshare, instead of proceeding through the normal flow
  597. // for obtaining a desktop stream.
  598. // NOTE: This option is experimental and is currently intended for internal
  599. // use only.
  600. // _desktopSharingSourceDevice: 'sample-id-or-label',
  601. // If true, any checks to handoff to another application will be prevented
  602. // and instead the app will continue to display in the current browser.
  603. // disableDeepLinking: false,
  604. // A property to disable the right click context menu for localVideo
  605. // the menu has option to flip the locally seen video for local presentations
  606. // disableLocalVideoFlip: false,
  607. // A property used to unset the default flip state of the local video.
  608. // When it is set to 'true', the local(self) video will not be mirrored anymore.
  609. // doNotFlipLocalVideo: false,
  610. // Mainly privacy related settings
  611. // Disables all invite functions from the app (share, invite, dial out...etc)
  612. // disableInviteFunctions: true,
  613. // Disables storing the room name to the recents list
  614. // doNotStoreRoom: true,
  615. // Deployment specific URLs.
  616. // deploymentUrls: {
  617. // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
  618. // // user documentation.
  619. // userDocumentationURL: 'https://docs.example.com/video-meetings.html',
  620. // // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
  621. // // to the specified URL for an app download page.
  622. // downloadAppsUrl: 'https://docs.example.com/our-apps.html'
  623. // },
  624. // Options related to the remote participant menu.
  625. // remoteVideoMenu: {
  626. // // If set to true the 'Kick out' button will be disabled.
  627. // disableKick: true,
  628. // // If set to true the 'Grant moderator' button will be disabled.
  629. // disableGrantModerator: true
  630. // },
  631. // If set to true all muting operations of remote participants will be disabled.
  632. // disableRemoteMute: true,
  633. // Enables support for lip-sync for this client (if the browser supports it).
  634. // enableLipSync: false
  635. /**
  636. External API url used to receive branding specific information.
  637. If there is no url set or there are missing fields, the defaults are applied.
  638. The config file should be in JSON.
  639. None of the fields are mandatory and the response must have the shape:
  640. {
  641. // The domain url to apply (will replace the domain in the sharing conference link/embed section)
  642. inviteDomain: 'example-company.org,
  643. // The hex value for the colour used as background
  644. backgroundColor: '#fff',
  645. // The url for the image used as background
  646. backgroundImageUrl: 'https://example.com/background-img.png',
  647. // The anchor url used when clicking the logo image
  648. logoClickUrl: 'https://example-company.org',
  649. // The url used for the image used as logo
  650. logoImageUrl: 'https://example.com/logo-img.png',
  651. // Overwrite for pool of background images for avatars
  652. avatarBackgrounds: ['url(https://example.com/avatar-background-1.png)', '#FFF'],
  653. // The lobby/prejoin screen background
  654. premeetingBackground: 'url(https://example.com/premeeting-background.png)'
  655. }
  656. */
  657. // dynamicBrandingUrl: '',
  658. // Sets the background transparency level. '0' is fully transparent, '1' is opaque.
  659. // backgroundAlpha: 1,
  660. // The URL of the moderated rooms microservice, if available. If it
  661. // is present, a link to the service will be rendered on the welcome page,
  662. // otherwise the app doesn't render it.
  663. // moderatedRoomServiceUrl: 'https://moderated.jitsi-meet.example.com',
  664. // If true, tile view will not be enabled automatically when the participants count threshold is reached.
  665. // disableTileView: true,
  666. // Hides the conference subject
  667. // hideConferenceSubject: true,
  668. // Hides the recording label
  669. // hideRecordingLabel: false,
  670. // Hides the conference timer.
  671. // hideConferenceTimer: true,
  672. // Hides the participants stats
  673. // hideParticipantsStats: true,
  674. // Sets the conference subject
  675. // subject: 'Conference Subject',
  676. // This property is related to the use case when jitsi-meet is used via the IFrame API. When the property is true
  677. // jitsi-meet will use the local storage of the host page instead of its own. This option is useful if the browser
  678. // is not persisting the local storage inside the iframe.
  679. // useHostPageLocalStorage: true,
  680. // etherpad ("shared document") integration.
  681. //
  682. // If set, add a "Open shared document" link to the bottom right menu that
  683. // will open an etherpad document.
  684. // etherpad_base: 'https://your-etherpad-installati.on/p/',
  685. // If etherpad_base is set, and useRoomAsSharedDocumentName is set to true,
  686. // open a pad with the name of the room (lowercased) instead of a pad with a
  687. // random UUID.
  688. // useRoomAsSharedDocumentName: true,
  689. // List of undocumented settings used in jitsi-meet
  690. /**
  691. _immediateReloadThreshold
  692. debug
  693. debugAudioLevels
  694. deploymentInfo
  695. dialInConfCodeUrl
  696. dialInNumbersUrl
  697. dialOutAuthUrl
  698. dialOutCodesUrl
  699. disableRemoteControl
  700. displayJids
  701. externalConnectUrl
  702. e2eeLabel
  703. firefox_fake_device
  704. googleApiApplicationClientID
  705. iAmRecorder
  706. iAmSipGateway
  707. microsoftApiApplicationClientID
  708. peopleSearchQueryTypes
  709. peopleSearchUrl
  710. requireDisplayName
  711. tokenAuthUrl
  712. */
  713. /**
  714. * This property can be used to alter the generated meeting invite links (in combination with a branding domain
  715. * which is retrieved internally by jitsi meet) (e.g. https://meet.jit.si/someMeeting
  716. * can become https://brandedDomain/roomAlias)
  717. */
  718. // brandingRoomAlias: null,
  719. // List of undocumented settings used in lib-jitsi-meet
  720. /**
  721. _peerConnStatusOutOfLastNTimeout
  722. _peerConnStatusRtcMuteTimeout
  723. abTesting
  724. avgRtpStatsN
  725. callStatsConfIDNamespace
  726. callStatsCustomScriptUrl
  727. desktopSharingSources
  728. disableAEC
  729. disableAGC
  730. disableAP
  731. disableHPF
  732. disableNS
  733. enableTalkWhileMuted
  734. forceJVB121Ratio
  735. forceTurnRelay
  736. hiddenDomain
  737. ignoreStartMuted
  738. websocketKeepAlive
  739. websocketKeepAliveUrl
  740. */
  741. /**
  742. * Default interval (milliseconds) for triggering mouseMoved iframe API event
  743. */
  744. mouseMoveCallbackInterval: 1000,
  745. /**
  746. Use this array to configure which notifications will be shown to the user
  747. The items correspond to the title or description key of that notification
  748. Some of these notifications also depend on some other internal logic to be displayed or not,
  749. so adding them here will not ensure they will always be displayed
  750. A falsy value for this prop will result in having all notifications enabled (e.g null, undefined, false)
  751. */
  752. // notifications: [
  753. // 'connection.CONNFAIL', // shown when the connection fails,
  754. // 'dialog.cameraNotSendingData', // shown when there's no feed from user's camera
  755. // 'dialog.kickTitle', // shown when user has been kicked
  756. // 'dialog.liveStreaming', // livestreaming notifications (pending, on, off, limits)
  757. // 'dialog.lockTitle', // shown when setting conference password fails
  758. // 'dialog.maxUsersLimitReached', // shown when maximmum users limit has been reached
  759. // 'dialog.micNotSendingData', // shown when user's mic is not sending any audio
  760. // 'dialog.passwordNotSupportedTitle', // shown when setting conference password fails due to password format
  761. // 'dialog.recording', // recording notifications (pending, on, off, limits)
  762. // 'dialog.remoteControlTitle', // remote control notifications (allowed, denied, start, stop, error)
  763. // 'dialog.reservationError',
  764. // 'dialog.serviceUnavailable', // shown when server is not reachable
  765. // 'dialog.sessTerminated', // shown when there is a failed conference session
  766. // 'dialog.sessionRestarted', // show when a client reload is initiated because of bridge migration
  767. // 'dialog.tokenAuthFailed', // show when an invalid jwt is used
  768. // 'dialog.transcribing', // transcribing notifications (pending, off)
  769. // 'dialOut.statusMessage', // shown when dial out status is updated.
  770. // 'liveStreaming.busy', // shown when livestreaming service is busy
  771. // 'liveStreaming.failedToStart', // shown when livestreaming fails to start
  772. // 'liveStreaming.unavailableTitle', // shown when livestreaming service is not reachable
  773. // 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected
  774. // 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied
  775. // 'localRecording.localRecording', // shown when a local recording is started
  776. // 'notify.disconnected', // shown when a participant has left
  777. // 'notify.grantedTo', // shown when moderator rights were granted to a participant
  778. // 'notify.invitedOneMember', // shown when 1 participant has been invited
  779. // 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited
  780. // 'notify.invitedTwoMembers', // shown when 2 participants have been invited
  781. // 'notify.kickParticipant', // shown when a participant is kicked
  782. // 'notify.moderationStartedTitle', // shown when AV moderation is activated
  783. // 'notify.moderationStoppedTitle', // shown when AV moderation is deactivated
  784. // 'notify.moderationInEffectTitle', // shown when user attempts to unmute audio during AV moderation
  785. // 'notify.moderationInEffectVideoTitle', // shown when user attempts to enable video during AV moderation
  786. // 'notify.moderationInEffectCSTitle', // shown when user attempts to share content during AV moderation
  787. // 'notify.mutedRemotelyTitle', // shown when user is muted by a remote party
  788. // 'notify.mutedTitle', // shown when user has been muted upon joining,
  789. // 'notify.newDeviceAudioTitle', // prompts the user to use a newly detected audio device
  790. // 'notify.newDeviceCameraTitle', // prompts the user to use a newly detected camera
  791. // 'notify.passwordRemovedRemotely', // shown when a password has been removed remotely
  792. // 'notify.passwordSetRemotely', // shown when a password has been set remotely
  793. // 'notify.raisedHand', // shown when a partcipant used raise hand,
  794. // 'notify.startSilentTitle', // shown when user joined with no audio
  795. // 'notify.unmute', // shown to moderator when user raises hand during AV moderation
  796. // 'prejoin.errorDialOut',
  797. // 'prejoin.errorDialOutDisconnected',
  798. // 'prejoin.errorDialOutFailed',
  799. // 'prejoin.errorDialOutStatus',
  800. // 'prejoin.errorStatusCode',
  801. // 'prejoin.errorValidation',
  802. // 'recording.busy', // shown when recording service is busy
  803. // 'recording.failedToStart', // shown when recording fails to start
  804. // 'recording.unavailableTitle', // shown when recording service is not reachable
  805. // 'toolbar.noAudioSignalTitle', // shown when a broken mic is detected
  806. // 'toolbar.noisyAudioInputTitle', // shown when noise is detected for the current microphone
  807. // 'toolbar.talkWhileMutedPopup', // shown when user tries to speak while muted
  808. // 'transcribing.failedToStart' // shown when transcribing fails to start
  809. // ],
  810. // Prevent the filmstrip from autohiding when screen width is under a certain threshold
  811. // disableFilmstripAutohiding: false,
  812. // Allow all above example options to include a trailing comma and
  813. // prevent fear when commenting out the last value.
  814. makeJsonParserHappy: 'even if last key had a trailing comma'
  815. // no configuration value should follow this line.
  816. };
  817. /* eslint-enable no-unused-vars, no-var */