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 43KB

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