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

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