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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597
  1. /* eslint-disable comma-dangle, no-unused-vars, no-var, prefer-template, vars-on-top */
  2. /*
  3. * NOTE: If you add a new option please remember to document it here:
  4. * https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-configuration
  5. */
  6. var subdir = '<!--# echo var="subdir" default="" -->';
  7. var subdomain = '<!--# echo var="subdomain" default="" -->';
  8. if (subdomain) {
  9. subdomain = subdomain.substr(0, subdomain.length - 1).split('.')
  10. .join('_')
  11. .toLowerCase() + '.';
  12. }
  13. // In case of no ssi provided by the webserver, use empty strings
  14. if (subdir.startsWith('<!--')) {
  15. subdir = '';
  16. }
  17. if (subdomain.startsWith('<!--')) {
  18. subdomain = '';
  19. }
  20. var enableJaaS = false;
  21. var config = {
  22. // Connection
  23. //
  24. hosts: {
  25. // XMPP domain.
  26. domain: 'jitsi-meet.example.com',
  27. // When using authentication, domain for guest users.
  28. // anonymousdomain: 'guest.example.com',
  29. // Domain for authenticated users. Defaults to <domain>.
  30. // authdomain: 'jitsi-meet.example.com',
  31. // Focus component domain. Defaults to focus.<domain>.
  32. // focus: 'focus.jitsi-meet.example.com',
  33. // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
  34. muc: 'conference.' + subdomain + 'jitsi-meet.example.com',
  35. },
  36. // BOSH URL. FIXME: use XEP-0156 to discover it.
  37. bosh: 'https://jitsi-meet.example.com/' + subdir + 'http-bind',
  38. // Websocket URL (XMPP)
  39. // websocket: 'wss://jitsi-meet.example.com/' + subdir + 'xmpp-websocket',
  40. // The real JID of focus participant - can be overridden here
  41. // Do not change username - FIXME: Make focus username configurable
  42. // https://github.com/jitsi/jitsi-meet/issues/7376
  43. // focusUserJid: 'focus@auth.jitsi-meet.example.com',
  44. // Options related to the bridge (colibri) data channel
  45. bridgeChannel: {
  46. // If the backend advertises multiple colibri websockets, this options allows
  47. // to filter some of them out based on the domain name. We use the first URL
  48. // which does not match ignoreDomain, falling back to the first one that matches
  49. // ignoreDomain. Has no effect if undefined.
  50. // ignoreDomain: 'example.com',
  51. // Prefer SCTP (WebRTC data channels over the media path) over a colibri websocket.
  52. // If SCTP is available in the backend it will be used instead of a WS. Defaults to
  53. // false (SCTP is used only if available and no WS are available).
  54. // preferSctp: false
  55. },
  56. // Testing / experimental features.
  57. //
  58. testing: {
  59. // Disables the End to End Encryption feature. Useful for debugging
  60. // issues related to insertable streams.
  61. // disableE2EE: false,
  62. // Enables XMPP WebSocket (as opposed to BOSH) for the given amount of users.
  63. // mobileXmppWsThreshold: 10, // enable XMPP WebSockets on mobile for 10% of the users
  64. // P2P test mode disables automatic switching to P2P when there are 2
  65. // participants in the conference.
  66. // p2pTestMode: false,
  67. // Enables the test specific features consumed by jitsi-meet-torture
  68. // testMode: false,
  69. // Disables the auto-play behavior of *all* newly created video element.
  70. // This is useful when the client runs on a host with limited resources.
  71. // noAutoPlayVideo: false,
  72. // Enable callstats only for a percentage of users.
  73. // This takes a value between 0 and 100 which determines the probability for
  74. // the callstats to be enabled.
  75. // callStatsThreshold: 5, // enable callstats for 5% of the users.
  76. },
  77. // Disables moderator indicators.
  78. // disableModeratorIndicator: false,
  79. // Disables the reactions feature.
  80. // disableReactions: true,
  81. // Disables the reactions moderation feature.
  82. // disableReactionsModeration: false,
  83. // Disables polls feature.
  84. // disablePolls: false,
  85. // Disables self-view tile. (hides it from tile view and from filmstrip)
  86. // disableSelfView: false,
  87. // Disables self-view settings in UI
  88. // disableSelfViewSettings: false,
  89. // screenshotCapture : {
  90. // Enables the screensharing capture feature.
  91. // enabled: false,
  92. //
  93. // The mode for the screenshot capture feature.
  94. // Can be either 'recording' - screensharing screenshots are taken
  95. // only when the recording is also on,
  96. // or 'always' - screensharing screenshots are always taken.
  97. // mode: 'recording',
  98. // }
  99. // Disables ICE/UDP by filtering out local and remote UDP candidates in
  100. // signalling.
  101. // webrtcIceUdpDisable: false,
  102. // Disables ICE/TCP by filtering out local and remote TCP candidates in
  103. // signalling.
  104. // webrtcIceTcpDisable: false,
  105. // Media
  106. //
  107. // Audio
  108. // Disable measuring of audio levels.
  109. // disableAudioLevels: false,
  110. // audioLevelsInterval: 200,
  111. // Enabling this will run the lib-jitsi-meet no audio detection module which
  112. // will notify the user if the current selected microphone has no audio
  113. // input and will suggest another valid device if one is present.
  114. enableNoAudioDetection: true,
  115. // Enabling this will show a "Save Logs" link in the GSM popover that can be
  116. // used to collect debug information (XMPP IQs, SDP offer/answer cycles)
  117. // about the call.
  118. // enableSaveLogs: false,
  119. // Enabling this will hide the "Show More" link in the GSM popover that can be
  120. // used to display more statistics about the connection (IP, Port, protocol, etc).
  121. // disableShowMoreStats: true,
  122. // Enabling this will run the lib-jitsi-meet noise detection module which will
  123. // notify the user if there is noise, other than voice, coming from the current
  124. // selected microphone. The purpose it to let the user know that the input could
  125. // be potentially unpleasant for other meeting participants.
  126. enableNoisyMicDetection: true,
  127. // Start the conference in audio only mode (no video is being received nor
  128. // sent).
  129. // startAudioOnly: false,
  130. // Every participant after the Nth will start audio muted.
  131. // startAudioMuted: 10,
  132. // Start calls with audio muted. Unlike the option above, this one is only
  133. // applied locally. FIXME: having these 2 options is confusing.
  134. // startWithAudioMuted: false,
  135. // Enabling it (with #params) will disable local audio output of remote
  136. // participants and to enable it back a reload is needed.
  137. // startSilent: false,
  138. // Enables support for opus-red (redundancy for Opus).
  139. // enableOpusRed: false,
  140. // Specify audio quality stereo and opusMaxAverageBitrate values in order to enable HD audio.
  141. // Beware, by doing so, you are disabling echo cancellation, noise suppression and AGC.
  142. // Specify enableOpusDtx to enable support for opus-dtx where
  143. // audio packets won’t be transmitted while participant is silent or muted.
  144. // audioQuality: {
  145. // stereo: false,
  146. // opusMaxAverageBitrate: null, // Value to fit the 6000 to 510000 range.
  147. // enableOpusDtx: false,
  148. // },
  149. // Noise suppression configuration. By default rnnoise is used. Optionally Krisp
  150. // can be used by enabling it below, but the Krisp JS SDK files must be supplied in your
  151. // installation. Specifically, these files are needed:
  152. // - https://meet.example.com/libs/krisp/krisp.mjs
  153. // - https://meet.example.com/libs/krisp/models/model_8.kw
  154. // - https://meet.example.com/libs/krisp/models/model_16.kw
  155. // - https://meet.example.com/libs/krisp/models/model_32.kw
  156. // NOTE: Krisp JS SDK v1.0.9 was tested.
  157. // noiseSuppression: {
  158. // krisp: {
  159. // enabled: false,
  160. // logProcessStats: false,
  161. // debugLogs: false,
  162. // },
  163. // },
  164. // Video
  165. // Sets the preferred resolution (height) for local video. Defaults to 720.
  166. // resolution: 720,
  167. // Specifies whether the raised hand will hide when someone becomes a dominant speaker or not
  168. // disableRemoveRaisedHandOnFocus: false,
  169. // speakerStats: {
  170. // // Specifies whether the speaker stats is enable or not.
  171. // disabled: false,
  172. // // Specifies whether there will be a search field in speaker stats or not.
  173. // disableSearch: false,
  174. // // Specifies whether participants in speaker stats should be ordered or not, and with what priority.
  175. // // 'role', <- Moderators on top.
  176. // // 'name', <- Alphabetically by name.
  177. // // 'hasLeft', <- The ones that have left in the bottom.
  178. // order: [
  179. // 'role',
  180. // 'name',
  181. // 'hasLeft',
  182. // ],
  183. // },
  184. // DEPRECATED. Please use speakerStats.disableSearch instead.
  185. // Specifies whether there will be a search field in speaker stats or not
  186. // disableSpeakerStatsSearch: false,
  187. // DEPRECATED. Please use speakerStats.order .
  188. // Specifies whether participants in speaker stats should be ordered or not, and with what priority
  189. // speakerStatsOrder: [
  190. // 'role', <- Moderators on top
  191. // 'name', <- Alphabetically by name
  192. // 'hasLeft', <- The ones that have left in the bottom
  193. // ], <- the order of the array elements determines priority
  194. // How many participants while in the tile view mode, before the receiving video quality is reduced from HD to SD.
  195. // Use -1 to disable.
  196. // maxFullResolutionParticipants: 2,
  197. // w3c spec-compliant video constraints to use for video capture. Currently
  198. // used by browsers that return true from lib-jitsi-meet's
  199. // util#browser#usesNewGumFlow. The constraints are independent from
  200. // this config's resolution value. Defaults to requesting an ideal
  201. // resolution of 720p.
  202. // constraints: {
  203. // video: {
  204. // height: {
  205. // ideal: 720,
  206. // max: 720,
  207. // min: 240,
  208. // },
  209. // },
  210. // },
  211. // Enable / disable simulcast support.
  212. // disableSimulcast: false,
  213. // Every participant after the Nth will start video muted.
  214. // startVideoMuted: 10,
  215. // Start calls with video muted. Unlike the option above, this one is only
  216. // applied locally. FIXME: having these 2 options is confusing.
  217. // startWithVideoMuted: false,
  218. // Desktop sharing
  219. // Optional desktop sharing frame rate options. Default value: min:5, max:5.
  220. // desktopSharingFrameRate: {
  221. // min: 5,
  222. // max: 5,
  223. // },
  224. // This option has been deprecated since it is no longer supported as per the w3c spec.
  225. // https://w3c.github.io/mediacapture-screen-share/#dom-mediadevices-getdisplaymedia. If the user has not
  226. // interacted with the webpage before the getDisplayMedia call, the promise will be rejected by the browser. This
  227. // has already been implemented in Firefox and Safari and will be implemented in Chrome soon.
  228. // https://bugs.chromium.org/p/chromium/issues/detail?id=1198918
  229. // startScreenSharing: false,
  230. // Recording
  231. // DEPRECATED. Use recordingService.enabled instead.
  232. // fileRecordingsEnabled: false,
  233. // Enable the dropbox integration.
  234. // dropbox: {
  235. // appKey: '<APP_KEY>', // Specify your app key here.
  236. // // A URL to redirect the user to, after authenticating
  237. // // by default uses:
  238. // // 'https://jitsi-meet.example.com/static/oauth.html'
  239. // redirectURI:
  240. // 'https://jitsi-meet.example.com/subfolder/static/oauth.html',
  241. // },
  242. // recordingService: {
  243. // // When integrations like dropbox are enabled only that will be shown,
  244. // // by enabling fileRecordingsServiceEnabled, we show both the integrations
  245. // // and the generic recording service (its configuration and storage type
  246. // // depends on jibri configuration)
  247. // enabled: false,
  248. // // Whether to show the possibility to share file recording with other people
  249. // // (e.g. meeting participants), based on the actual implementation
  250. // // on the backend.
  251. // sharingEnabled: false,
  252. // // Hide the warning that says we only store the recording for 24 hours.
  253. // hideStorageWarning: false,
  254. // },
  255. // DEPRECATED. Use recordingService.enabled instead.
  256. // fileRecordingsServiceEnabled: false,
  257. // DEPRECATED. Use recordingService.sharingEnabled instead.
  258. // fileRecordingsServiceSharingEnabled: false,
  259. // Local recording configuration.
  260. // localRecording: {
  261. // // Whether to disable local recording or not.
  262. // disable: false,
  263. // // Whether to notify all participants when a participant is recording locally.
  264. // notifyAllParticipants: false,
  265. // // Whether to disable the self recording feature (only local participant streams).
  266. // disableSelfRecording: false,
  267. // },
  268. // Customize the Live Streaming dialog. Can be modified for a non-YouTube provider.
  269. // liveStreaming: {
  270. // // Whether to enable live streaming or not.
  271. // enabled: false,
  272. // // Terms link
  273. // termsLink: 'https://www.youtube.com/t/terms',
  274. // // Data privacy link
  275. // dataPrivacyLink: 'https://policies.google.com/privacy',
  276. // // RegExp string that validates the stream key input field
  277. // validatorRegExpString: '^(?:[a-zA-Z0-9]{4}(?:-(?!$)|$)){4}',
  278. // // Documentation reference for the live streaming feature.
  279. // helpLink: 'https://jitsi.org/live'
  280. // },
  281. // DEPRECATED. Use liveStreaming.enabled instead.
  282. // liveStreamingEnabled: false,
  283. // DEPRECATED. Use transcription.enabled instead.
  284. // transcribingEnabled: false,
  285. // DEPRECATED. Use transcription.useAppLanguage instead.
  286. // transcribeWithAppLanguage: true,
  287. // DEPRECATED. Use transcription.preferredLanguage instead.
  288. // preferredTranscribeLanguage: 'en-US',
  289. // DEPRECATED. Use transcription.autoCaptionOnRecord instead.
  290. // autoCaptionOnRecord: false,
  291. // Transcription options.
  292. // transcription: {
  293. // // Whether the feature should be enabled or not.
  294. // enabled: false,
  295. // // Translation languages.
  296. // // Available languages can be found in
  297. // // ./src/react/features/transcribing/translation-languages.json.
  298. // translationLanguages: ['en', 'es', 'fr', 'ro'],
  299. // // Important languages to show on the top of the language list.
  300. // translationLanguagesHead: ['en'],
  301. // // If true transcriber will use the application language.
  302. // // The application language is either explicitly set by participants in their settings or automatically
  303. // // detected based on the environment, e.g. if the app is opened in a chrome instance which
  304. // // is using french as its default language then transcriptions for that participant will be in french.
  305. // // Defaults to true.
  306. // useAppLanguage: true,
  307. // // Transcriber language. This settings will only work if "useAppLanguage"
  308. // // is explicitly set to false.
  309. // // Available languages can be found in
  310. // // ./src/react/features/transcribing/transcriber-langs.json.
  311. // preferredLanguage: 'en-US',
  312. // // Disable start transcription for all participants.
  313. // disableStartForAll: false,
  314. // // Enables automatic turning on captions when recording is started
  315. // autoCaptionOnRecord: false,
  316. // },
  317. // Misc
  318. // Default value for the channel "last N" attribute. -1 for unlimited.
  319. channelLastN: -1,
  320. // Connection indicators
  321. // connectionIndicators: {
  322. // autoHide: true,
  323. // autoHideTimeout: 5000,
  324. // disabled: false,
  325. // disableDetails: false,
  326. // inactiveDisabled: false
  327. // },
  328. // Provides a way for the lastN value to be controlled through the UI.
  329. // When startLastN is present, conference starts with a last-n value of startLastN and channelLastN
  330. // value will be used when the quality level is selected using "Manage Video Quality" slider.
  331. // startLastN: 1,
  332. // Specify the settings for video quality optimizations on the client.
  333. // videoQuality: {
  334. // // Provides a way to prevent a video codec from being negotiated on the JVB connection. The codec specified
  335. // // here will be removed from the list of codecs present in the SDP answer generated by the client. If the
  336. // // same codec is specified for both the disabled and preferred option, the disable settings will prevail.
  337. // // Note that 'VP8' cannot be disabled since it's a mandatory codec, the setting will be ignored in this case.
  338. // disabledCodec: 'H264',
  339. //
  340. // // Provides a way to set a preferred video codec for the JVB connection. If 'H264' is specified here,
  341. // // simulcast will be automatically disabled since JVB doesn't support H264 simulcast yet. This will only
  342. // // rearrange the the preference order of the codecs in the SDP answer generated by the browser only if the
  343. // // preferred codec specified here is present. Please ensure that the JVB offers the specified codec for this
  344. // // to take effect.
  345. // preferredCodec: 'VP8',
  346. //
  347. // // Provides a way to enforce the preferred codec for the conference even when the conference has endpoints
  348. // // that do not support the preferred codec. For example, older versions of Safari do not support VP9 yet.
  349. // // This will result in Safari not being able to decode video from endpoints sending VP9 video.
  350. // // When set to false, the conference falls back to VP8 whenever there is an endpoint that doesn't support the
  351. // // preferred codec and goes back to the preferred codec when that endpoint leaves.
  352. // enforcePreferredCodec: false,
  353. //
  354. // // Provides a way to configure the maximum bitrates that will be enforced on the simulcast streams for
  355. // // video tracks. The keys in the object represent the type of the stream (LD, SD or HD) and the values
  356. // // are the max.bitrates to be set on that particular type of stream. The actual send may vary based on
  357. // // the available bandwidth calculated by the browser, but it will be capped by the values specified here.
  358. // // This is currently not implemented on app based clients on mobile.
  359. // maxBitratesVideo: {
  360. // H264: {
  361. // low: 200000,
  362. // standard: 500000,
  363. // high: 1500000,
  364. // },
  365. // VP8 : {
  366. // low: 200000,
  367. // standard: 500000,
  368. // high: 1500000,
  369. // },
  370. // VP9: {
  371. // low: 100000,
  372. // standard: 300000,
  373. // high: 1200000,
  374. // },
  375. // },
  376. //
  377. // // The options can be used to override default thresholds of video thumbnail heights corresponding to
  378. // // the video quality levels used in the application. At the time of this writing the allowed levels are:
  379. // // 'low' - for the low quality level (180p at the time of this writing)
  380. // // 'standard' - for the medium quality level (360p)
  381. // // 'high' - for the high quality level (720p)
  382. // // The keys should be positive numbers which represent the minimal thumbnail height for the quality level.
  383. // //
  384. // // With the default config value below the application will use 'low' quality until the thumbnails are
  385. // // at least 360 pixels tall. If the thumbnail height reaches 720 pixels then the application will switch to
  386. // // the high quality.
  387. // minHeightForQualityLvl: {
  388. // 360: 'standard',
  389. // 720: 'high',
  390. // },
  391. //
  392. // },
  393. // Notification timeouts
  394. // notificationTimeouts: {
  395. // short: 2500,
  396. // medium: 5000,
  397. // long: 10000,
  398. // },
  399. // // Options for the recording limit notification.
  400. // recordingLimit: {
  401. //
  402. // // The recording limit in minutes. Note: This number appears in the notification text
  403. // // but doesn't enforce the actual recording time limit. This should be configured in
  404. // // jibri!
  405. // limit: 60,
  406. //
  407. // // The name of the app with unlimited recordings.
  408. // appName: 'Unlimited recordings APP',
  409. //
  410. // // The URL of the app with unlimited recordings.
  411. // appURL: 'https://unlimited.recordings.app.com/',
  412. // },
  413. // Disables or enables RTX (RFC 4588) (defaults to false).
  414. // disableRtx: false,
  415. // Moves all Jitsi Meet 'beforeunload' logic (cleanup, leaving, disconnecting, etc) to the 'unload' event.
  416. // disableBeforeUnloadHandlers: true,
  417. // Disables or enables TCC support in this client (default: enabled).
  418. // enableTcc: true,
  419. // Disables or enables REMB support in this client (default: enabled).
  420. // enableRemb: true,
  421. // Enables ICE restart logic in LJM and displays the page reload overlay on
  422. // ICE failure. Current disabled by default because it's causing issues with
  423. // signaling when Octo is enabled. Also when we do an "ICE restart"(which is
  424. // not a real ICE restart), the client maintains the TCC sequence number
  425. // counter, but the bridge resets it. The bridge sends media packets with
  426. // TCC sequence numbers starting from 0.
  427. // enableIceRestart: false,
  428. // Enables forced reload of the client when the call is migrated as a result of
  429. // the bridge going down.
  430. // enableForcedReload: true,
  431. // Use TURN/UDP servers for the jitsi-videobridge connection (by default
  432. // we filter out TURN/UDP because it is usually not needed since the
  433. // bridge itself is reachable via UDP)
  434. // useTurnUdp: false
  435. // Enable support for encoded transform in supported browsers. This allows
  436. // E2EE to work in Safari if the corresponding flag is enabled in the browser.
  437. // Experimental.
  438. // enableEncodedTransformSupport: false,
  439. // UI
  440. //
  441. // Disables responsive tiles.
  442. // disableResponsiveTiles: false,
  443. // DEPRECATED. Please use `securityUi?.hideLobbyButton` instead.
  444. // Hides lobby button.
  445. // hideLobbyButton: false,
  446. // DEPRECATED. Please use `lobby?.autoKnock` instead.
  447. // If Lobby is enabled starts knocking automatically.
  448. // autoKnockLobby: false,
  449. // DEPRECATED. Please use `lobby?.enableChat` instead.
  450. // Enable lobby chat.
  451. // enableLobbyChat: true,
  452. // DEPRECATED! Use `breakoutRooms.hideAddRoomButton` instead.
  453. // Hides add breakout room button
  454. // hideAddRoomButton: false,
  455. // Require users to always specify a display name.
  456. // requireDisplayName: true,
  457. // Enables webhid functionality for Audio.
  458. // enableWebHIDFeature: false,
  459. // DEPRECATED! Use 'welcomePage.disabled' instead.
  460. // Whether to use a welcome page or not. In case it's false a random room
  461. // will be joined when no room is specified.
  462. // enableWelcomePage: true,
  463. // Configs for welcome page.
  464. // welcomePage: {
  465. // // Whether to disable welcome page. In case it's disabled a random room
  466. // // will be joined when no room is specified.
  467. // disabled: false,
  468. // // If set,landing page will redirect to this URL.
  469. // customUrl: ''
  470. // },
  471. // Configs for the lobby screen.
  472. // lobby {
  473. // // If Lobby is enabled, it starts knocking automatically. Replaces `autoKnockLobby`.
  474. // autoKnock: false,
  475. // // Enables the lobby chat. Replaces `enableLobbyChat`.
  476. // enableChat: true,
  477. // },
  478. // Configs for the security related UI elements.
  479. // securityUi: {
  480. // // Hides the lobby button. Replaces `hideLobbyButton`.
  481. // hideLobbyButton: false,
  482. // // Hides the possibility to set and enter a lobby password.
  483. // disableLobbyPassword: false,
  484. // },
  485. // Disable app shortcuts that are registered upon joining a conference
  486. // disableShortcuts: false,
  487. // Disable initial browser getUserMedia requests.
  488. // This is useful for scenarios where users might want to start a conference for screensharing only
  489. // disableInitialGUM: false,
  490. // Enabling the close page will ignore the welcome page redirection when
  491. // a call is hangup.
  492. // enableClosePage: false,
  493. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  494. // Setting this to null, will also disable showing the remote videos
  495. // when the toolbar is shown on mouse movements
  496. // disable1On1Mode: null | false | true,
  497. // Default local name to be displayed
  498. // defaultLocalDisplayName: 'me',
  499. // Default remote name to be displayed
  500. // defaultRemoteDisplayName: 'Fellow Jitster',
  501. // Hides the display name from the participant thumbnail
  502. // hideDisplayName: false,
  503. // Hides the dominant speaker name badge that hovers above the toolbox
  504. // hideDominantSpeakerBadge: false,
  505. // Default language for the user interface. Cannot be overwritten.
  506. // defaultLanguage: 'en',
  507. // Disables profile and the edit of all fields from the profile settings (display name and email)
  508. // disableProfile: false,
  509. // Hides the email section under profile settings.
  510. // hideEmailInSettings: false,
  511. // When enabled the password used for locking a room is restricted to up to the number of digits specified
  512. // default: roomPasswordNumberOfDigits: false,
  513. // roomPasswordNumberOfDigits: 10,
  514. // Message to show the users. Example: 'The service will be down for
  515. // maintenance at 01:00 AM GMT,
  516. // noticeMessage: '',
  517. // Enables calendar integration, depends on googleApiApplicationClientID
  518. // and microsoftApiApplicationClientID
  519. // enableCalendarIntegration: false,
  520. // Configs for prejoin page.
  521. // prejoinConfig: {
  522. // // When 'true', it shows an intermediate page before joining, where the user can configure their devices.
  523. // // This replaces `prejoinPageEnabled`.
  524. // enabled: true,
  525. // // Hides the participant name editing field in the prejoin screen.
  526. // // If requireDisplayName is also set as true, a name should still be provided through
  527. // // either the jwt or the userInfo from the iframe api init object in order for this to have an effect.
  528. // hideDisplayName: false,
  529. // // List of buttons to hide from the extra join options dropdown.
  530. // hideExtraJoinButtons: ['no-audio', 'by-phone'],
  531. // },
  532. // When 'true', the user cannot edit the display name.
  533. // (Mainly useful when used in conjunction with the JWT so the JWT name becomes read only.)
  534. // readOnlyName: false,
  535. // If etherpad integration is enabled, setting this to true will
  536. // automatically open the etherpad when a participant joins. This
  537. // does not affect the mobile app since opening an etherpad
  538. // obscures the conference controls -- it's better to let users
  539. // choose to open the pad on their own in that case.
  540. // openSharedDocumentOnJoin: false,
  541. // If true, shows the unsafe room name warning label when a room name is
  542. // deemed unsafe (due to the simplicity in the name) and a password is not
  543. // set or the lobby is not enabled.
  544. // enableInsecureRoomNameWarning: false,
  545. // Whether to automatically copy invitation URL after creating a room.
  546. // Document should be focused for this option to work
  547. // enableAutomaticUrlCopy: false,
  548. // Array with avatar URL prefixes that need to use CORS.
  549. // corsAvatarURLs: [ 'https://www.gravatar.com/avatar/' ],
  550. // Base URL for a Gravatar-compatible service. Defaults to Gravatar.
  551. // DEPRECATED! Use `gravatar.baseUrl` instead.
  552. // gravatarBaseURL: 'https://www.gravatar.com/avatar/',
  553. // Setup for Gravatar-compatible services.
  554. // gravatar: {
  555. // // Defaults to Gravatar.
  556. // baseUrl: 'https://www.gravatar.com/avatar/',
  557. // // True if Gravatar should be disabled.
  558. // disabled: false,
  559. // },
  560. // App name to be displayed in the invitation email subject, as an alternative to
  561. // interfaceConfig.APP_NAME.
  562. // inviteAppName: null,
  563. // Moved from interfaceConfig(TOOLBAR_BUTTONS).
  564. // The name of the toolbar buttons to display in the toolbar, including the
  565. // "More actions" menu. If present, the button will display. Exceptions are
  566. // "livestreaming" and "recording" which also require being a moderator and
  567. // some other values in config.js to be enabled. Also, the "profile" button will
  568. // not display for users with a JWT.
  569. // Notes:
  570. // - it's impossible to choose which buttons go in the "More actions" menu
  571. // - it's impossible to control the placement of buttons
  572. // - 'desktop' controls the "Share your screen" button
  573. // - if `toolbarButtons` is undefined, we fallback to enabling all buttons on the UI
  574. // toolbarButtons: [
  575. // 'camera',
  576. // 'chat',
  577. // 'closedcaptions',
  578. // 'desktop',
  579. // 'download',
  580. // 'embedmeeting',
  581. // 'etherpad',
  582. // 'feedback',
  583. // 'filmstrip',
  584. // 'fullscreen',
  585. // 'hangup',
  586. // 'help',
  587. // 'highlight',
  588. // 'invite',
  589. // 'linktosalesforce',
  590. // 'livestreaming',
  591. // 'microphone',
  592. // 'noisesuppression',
  593. // 'participants-pane',
  594. // 'profile',
  595. // 'raisehand',
  596. // 'recording',
  597. // 'security',
  598. // 'select-background',
  599. // 'settings',
  600. // 'shareaudio',
  601. // 'sharedvideo',
  602. // 'shortcuts',
  603. // 'stats',
  604. // 'tileview',
  605. // 'toggle-camera',
  606. // 'videoquality',
  607. // 'whiteboard',
  608. // ],
  609. // Holds values related to toolbar visibility control.
  610. // toolbarConfig: {
  611. // // Moved from interfaceConfig.INITIAL_TOOLBAR_TIMEOUT
  612. // // The initial number of milliseconds for the toolbar buttons to be visible on screen.
  613. // initialTimeout: 20000,
  614. // // Moved from interfaceConfig.TOOLBAR_TIMEOUT
  615. // // Number of milliseconds for the toolbar buttons to be visible on screen.
  616. // timeout: 4000,
  617. // // Moved from interfaceConfig.TOOLBAR_ALWAYS_VISIBLE
  618. // // Whether toolbar should be always visible or should hide after x milliseconds.
  619. // alwaysVisible: false,
  620. // // Indicates whether the toolbar should still autohide when chat is open
  621. // autoHideWhileChatIsOpen: false,
  622. // },
  623. // Toolbar buttons which have their click/tap event exposed through the API on
  624. // `toolbarButtonClicked`. Passing a string for the button key will
  625. // prevent execution of the click/tap routine; passing an object with `key` and
  626. // `preventExecution` flag on false will not prevent execution of the click/tap
  627. // routine. Below array with mixed mode for passing the buttons.
  628. // buttonsWithNotifyClick: [
  629. // 'camera',
  630. // {
  631. // key: 'chat',
  632. // preventExecution: false
  633. // },
  634. // {
  635. // key: 'closedcaptions',
  636. // preventExecution: true
  637. // },
  638. // 'desktop',
  639. // 'download',
  640. // 'embedmeeting',
  641. // 'end-meeting',
  642. // 'etherpad',
  643. // 'feedback',
  644. // 'filmstrip',
  645. // 'fullscreen',
  646. // 'hangup',
  647. // 'hangup-menu',
  648. // 'help',
  649. // {
  650. // key: 'invite',
  651. // preventExecution: false
  652. // },
  653. // 'livestreaming',
  654. // 'microphone',
  655. // 'mute-everyone',
  656. // 'mute-video-everyone',
  657. // 'noisesuppression',
  658. // 'participants-pane',
  659. // 'profile',
  660. // {
  661. // key: 'raisehand',
  662. // preventExecution: true
  663. // },
  664. // 'recording',
  665. // 'security',
  666. // 'select-background',
  667. // 'settings',
  668. // 'shareaudio',
  669. // 'sharedvideo',
  670. // 'shortcuts',
  671. // 'stats',
  672. // 'tileview',
  673. // 'toggle-camera',
  674. // 'videoquality',
  675. // // The add passcode button from the security dialog.
  676. // {
  677. // key: 'add-passcode',
  678. // preventExecution: false
  679. // },
  680. // 'whiteboard',
  681. // ],
  682. // List of pre meeting screens buttons to hide. The values must be one or more of the 5 allowed buttons:
  683. // 'microphone', 'camera', 'select-background', 'invite', 'settings'
  684. // hiddenPremeetingButtons: [],
  685. // An array with custom option buttons for the participant context menu
  686. // type: Array<{ icon: string; id: string; text: string; }>
  687. // customParticipantMenuButtons: [],
  688. // An array with custom option buttons for the toolbar
  689. // type: Array<{ icon: string; id: string; text: string; }>
  690. // customToolbarButtons: [],
  691. // Stats
  692. //
  693. // Whether to enable stats collection or not in the TraceablePeerConnection.
  694. // This can be useful for debugging purposes (post-processing/analysis of
  695. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  696. // estimation tests.
  697. // gatherStats: false,
  698. // The interval at which PeerConnection.getStats() is called. Defaults to 10000
  699. // pcStatsInterval: 10000,
  700. // To enable sending statistics to callstats.io you must provide the
  701. // Application ID and Secret.
  702. // callStatsID: '',
  703. // callStatsSecret: '',
  704. // callStatsApplicationLogsDisabled: false,
  705. // The callstats initialize config params as described in the API:
  706. // https://docs.callstats.io/docs/javascript#callstatsinitialize-with-app-secret
  707. // callStatsConfigParams: {
  708. // disableBeforeUnloadHandler: true, // disables callstats.js's window.onbeforeunload parameter.
  709. // applicationVersion: "app_version", // Application version specified by the developer.
  710. // disablePrecalltest: true, // disables the pre-call test, it is enabled by default.
  711. // siteID: "siteID", // The name/ID of the site/campus from where the call/pre-call test is made.
  712. // additionalIDs: { // additionalIDs object, contains application related IDs.
  713. // customerID: "Customer Identifier. Example, walmart.",
  714. // tenantID: "Tenant Identifier. Example, monster.",
  715. // productName: "Product Name. Example, Jitsi.",
  716. // meetingsName: "Meeting Name. Example, Jitsi loves callstats.",
  717. // serverName: "Server/MiddleBox Name. Example, jvb-prod-us-east-mlkncws12.",
  718. // pbxID: "PBX Identifier. Example, walmart.",
  719. // pbxExtensionID: "PBX Extension Identifier. Example, 5625.",
  720. // fqExtensionID: "Fully qualified Extension Identifier. Example, +71 (US) +5625.",
  721. // sessionID: "Session Identifier. Example, session-12-34",
  722. // },
  723. // collectLegacyStats: true, //enables the collection of legacy stats in chrome browser
  724. // collectIP: true, //enables the collection localIP address
  725. // },
  726. // Enables sending participants' display names to callstats
  727. // enableDisplayNameInStats: false,
  728. // Enables sending participants' emails (if available) to callstats and other analytics
  729. // enableEmailInStats: false,
  730. // faceLandmarks: {
  731. // // Enables sharing your face coordinates. Used for centering faces within a video.
  732. // enableFaceCentering: false,
  733. // // Enables detecting face expressions and sharing data with other participants
  734. // enableFaceExpressionsDetection: false,
  735. // // Enables displaying face expressions in speaker stats
  736. // enableDisplayFaceExpressions: false,
  737. // // Enable rtc stats for face landmarks
  738. // enableRTCStats: false,
  739. // // Minimum required face movement percentage threshold for sending new face centering coordinates data.
  740. // faceCenteringThreshold: 10,
  741. // // Milliseconds for processing a new image capture in order to detect face coordinates if they exist.
  742. // captureInterval: 1000,
  743. // },
  744. // Controls the percentage of automatic feedback shown to participants when callstats is enabled.
  745. // The default value is 100%. If set to 0, no automatic feedback will be requested
  746. // feedbackPercentage: 100,
  747. // Privacy
  748. //
  749. // If third party requests are disabled, no other server will be contacted.
  750. // This means avatars will be locally generated and callstats integration
  751. // will not function.
  752. // disableThirdPartyRequests: false,
  753. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  754. //
  755. p2p: {
  756. // Enables peer to peer mode. When enabled the system will try to
  757. // establish a direct connection when there are exactly 2 participants
  758. // in the room. If that succeeds the conference will stop sending data
  759. // through the JVB and use the peer to peer connection instead. When a
  760. // 3rd participant joins the conference will be moved back to the JVB
  761. // connection.
  762. enabled: true,
  763. // Sets the ICE transport policy for the p2p connection. At the time
  764. // of this writing the list of possible values are 'all' and 'relay',
  765. // but that is subject to change in the future. The enum is defined in
  766. // the WebRTC standard:
  767. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  768. // If not set, the effective value is 'all'.
  769. // iceTransportPolicy: 'all',
  770. // Provides a way to set the video codec preference on the p2p connection. Acceptable
  771. // codec values are 'VP8', 'VP9' and 'H264'.
  772. // preferredCodec: 'H264',
  773. // Provides a way to prevent a video codec from being negotiated on the p2p connection.
  774. // disabledCodec: '',
  775. // How long we're going to wait, before going back to P2P after the 3rd
  776. // participant has left the conference (to filter out page reload).
  777. // backToP2PDelay: 5,
  778. // The STUN servers that will be used in the peer to peer connections
  779. stunServers: [
  780. // { urls: 'stun:jitsi-meet.example.com:3478' },
  781. { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' },
  782. ],
  783. },
  784. analytics: {
  785. // True if the analytics should be disabled
  786. // disabled: false,
  787. // The Google Analytics Tracking ID:
  788. // googleAnalyticsTrackingId: 'your-tracking-id-UA-123456-1',
  789. // Matomo configuration:
  790. // matomoEndpoint: 'https://your-matomo-endpoint/',
  791. // matomoSiteID: '42',
  792. // The Amplitude APP Key:
  793. // amplitudeAPPKey: '<APP_KEY>',
  794. // Obfuscates room name sent to analytics (amplitude, rtcstats)
  795. // Default value is false.
  796. // obfuscateRoomName: false,
  797. // Configuration for the rtcstats server:
  798. // By enabling rtcstats server every time a conference is joined the rtcstats
  799. // module connects to the provided rtcstatsEndpoint and sends statistics regarding
  800. // PeerConnection states along with getStats metrics polled at the specified
  801. // interval.
  802. // rtcstatsEnabled: false,
  803. // rtcstatsStoreLogs: false,
  804. // In order to enable rtcstats one needs to provide a endpoint url.
  805. // rtcstatsEndpoint: wss://rtcstats-server-pilot.jitsi.net/,
  806. // The interval at which rtcstats will poll getStats, defaults to 10000ms.
  807. // If the value is set to 0 getStats won't be polled and the rtcstats client
  808. // will only send data related to RTCPeerConnection events.
  809. // rtcstatsPollInterval: 10000,
  810. // This determines if rtcstats sends the SDP to the rtcstats server or replaces
  811. // all SDPs with an empty string instead.
  812. // rtcstatsSendSdp: false,
  813. // Array of script URLs to load as lib-jitsi-meet "analytics handlers".
  814. // scriptURLs: [
  815. // "libs/analytics-ga.min.js", // google-analytics
  816. // "https://example.com/my-custom-analytics.js",
  817. // ],
  818. },
  819. // Logs that should go be passed through the 'log' event if a handler is defined for it
  820. // apiLogLevels: ['warn', 'log', 'error', 'info', 'debug'],
  821. // Information about the jitsi-meet instance we are connecting to, including
  822. // the user region as seen by the server.
  823. // deploymentInfo: {
  824. // shard: "shard1",
  825. // region: "europe",
  826. // userRegion: "asia",
  827. // },
  828. // Array<string> of disabled sounds.
  829. // Possible values:
  830. // - 'ASKED_TO_UNMUTE_SOUND'
  831. // - 'E2EE_OFF_SOUND'
  832. // - 'E2EE_ON_SOUND'
  833. // - 'INCOMING_MSG_SOUND'
  834. // - 'KNOCKING_PARTICIPANT_SOUND'
  835. // - 'LIVE_STREAMING_OFF_SOUND'
  836. // - 'LIVE_STREAMING_ON_SOUND'
  837. // - 'NO_AUDIO_SIGNAL_SOUND'
  838. // - 'NOISY_AUDIO_INPUT_SOUND'
  839. // - 'OUTGOING_CALL_EXPIRED_SOUND'
  840. // - 'OUTGOING_CALL_REJECTED_SOUND'
  841. // - 'OUTGOING_CALL_RINGING_SOUND'
  842. // - 'OUTGOING_CALL_START_SOUND'
  843. // - 'PARTICIPANT_JOINED_SOUND'
  844. // - 'PARTICIPANT_LEFT_SOUND'
  845. // - 'RAISE_HAND_SOUND'
  846. // - 'REACTION_SOUND'
  847. // - 'RECORDING_OFF_SOUND'
  848. // - 'RECORDING_ON_SOUND'
  849. // - 'TALK_WHILE_MUTED_SOUND'
  850. // disabledSounds: [],
  851. // DEPRECATED! Use `disabledSounds` instead.
  852. // Decides whether the start/stop recording audio notifications should play on record.
  853. // disableRecordAudioNotification: false,
  854. // DEPRECATED! Use `disabledSounds` instead.
  855. // Disables the sounds that play when other participants join or leave the
  856. // conference (if set to true, these sounds will not be played).
  857. // disableJoinLeaveSounds: false,
  858. // DEPRECATED! Use `disabledSounds` instead.
  859. // Disables the sounds that play when a chat message is received.
  860. // disableIncomingMessageSound: false,
  861. // Information for the chrome extension banner
  862. // chromeExtensionBanner: {
  863. // // The chrome extension to be installed address
  864. // url: 'https://chrome.google.com/webstore/detail/jitsi-meetings/kglhbbefdnlheedjiejgomgmfplipfeb',
  865. // edgeUrl: 'https://microsoftedge.microsoft.com/addons/detail/jitsi-meetings/eeecajlpbgjppibfledfihobcabccihn',
  866. // // Extensions info which allows checking if they are installed or not
  867. // chromeExtensionsInfo: [
  868. // {
  869. // id: 'kglhbbefdnlheedjiejgomgmfplipfeb',
  870. // path: 'jitsi-logo-48x48.png',
  871. // },
  872. // // Edge extension info
  873. // {
  874. // id: 'eeecajlpbgjppibfledfihobcabccihn',
  875. // path: 'jitsi-logo-48x48.png',
  876. // },
  877. // ]
  878. // },
  879. // e2ee: {
  880. // labels,
  881. // externallyManagedKey: false,
  882. // },
  883. // Options related to end-to-end (participant to participant) ping.
  884. // e2eping: {
  885. // // Whether ene-to-end pings should be enabled.
  886. // enabled: false,
  887. //
  888. // // The number of responses to wait for.
  889. // numRequests: 5,
  890. //
  891. // // The max conference size in which e2e pings will be sent.
  892. // maxConferenceSize: 200,
  893. //
  894. // // The maximum number of e2e ping messages per second for the whole conference to aim for.
  895. // // This is used to control the pacing of messages in order to reduce the load on the backend.
  896. // maxMessagesPerSecond: 250,
  897. // },
  898. // If set, will attempt to use the provided video input device label when
  899. // triggering a screenshare, instead of proceeding through the normal flow
  900. // for obtaining a desktop stream.
  901. // NOTE: This option is experimental and is currently intended for internal
  902. // use only.
  903. // _desktopSharingSourceDevice: 'sample-id-or-label',
  904. // DEPRECATED! Use deeplinking.disabled instead.
  905. // If true, any checks to handoff to another application will be prevented
  906. // and instead the app will continue to display in the current browser.
  907. // disableDeepLinking: false,
  908. // The deeplinking config.
  909. // For information about the properties of
  910. // deeplinking.[ios/android].dynamicLink check:
  911. // https://firebase.google.com/docs/dynamic-links/create-manually
  912. // deeplinking: {
  913. //
  914. // // The desktop deeplinking config.
  915. // desktop: {
  916. // appName: 'Jitsi Meet'
  917. // },
  918. // // If true, any checks to handoff to another application will be prevented
  919. // // and instead the app will continue to display in the current browser.
  920. // disabled: false,
  921. // // whether to hide the logo on the deep linking pages.
  922. // hideLogo: false,
  923. // // The ios deeplinking config.
  924. // ios: {
  925. // appName: 'Jitsi Meet',
  926. // // Specify mobile app scheme for opening the app from the mobile browser.
  927. // appScheme: 'org.jitsi.meet',
  928. // // Custom URL for downloading ios mobile app.
  929. // downloadLink: 'https://itunes.apple.com/us/app/jitsi-meet/id1165103905',
  930. // dynamicLink: {
  931. // apn: 'org.jitsi.meet',
  932. // appCode: 'w2atb',
  933. // customDomain: undefined,
  934. // ibi: 'com.atlassian.JitsiMeet.ios',
  935. // isi: '1165103905'
  936. // }
  937. // },
  938. // // The android deeplinking config.
  939. // android: {
  940. // appName: 'Jitsi Meet',
  941. // // Specify mobile app scheme for opening the app from the mobile browser.
  942. // appScheme: 'org.jitsi.meet',
  943. // // Custom URL for downloading android mobile app.
  944. // downloadLink: 'https://play.google.com/store/apps/details?id=org.jitsi.meet',
  945. // // Android app package name.
  946. // appPackage: 'org.jitsi.meet',
  947. // fDroidUrl: 'https://f-droid.org/en/packages/org.jitsi.meet/',
  948. // dynamicLink: {
  949. // apn: 'org.jitsi.meet',
  950. // appCode: 'w2atb',
  951. // customDomain: undefined,
  952. // ibi: 'com.atlassian.JitsiMeet.ios',
  953. // isi: '1165103905'
  954. // }
  955. // }
  956. // },
  957. // // The terms, privacy and help centre URL's.
  958. // legalUrls: {
  959. // helpCentre: 'https://web-cdn.jitsi.net/faq/meet-faq.html',
  960. // privacy: 'https://jitsi.org/meet/privacy',
  961. // terms: 'https://jitsi.org/meet/terms'
  962. // },
  963. // A property to disable the right click context menu for localVideo
  964. // the menu has option to flip the locally seen video for local presentations
  965. // disableLocalVideoFlip: false,
  966. // A property used to unset the default flip state of the local video.
  967. // When it is set to 'true', the local(self) video will not be mirrored anymore.
  968. // doNotFlipLocalVideo: false,
  969. // Mainly privacy related settings
  970. // Disables all invite functions from the app (share, invite, dial out...etc)
  971. // disableInviteFunctions: true,
  972. // Disables storing the room name to the recents list. When in an iframe this is ignored and
  973. // the room is never stored in the recents list.
  974. // doNotStoreRoom: true,
  975. // Deployment specific URLs.
  976. // deploymentUrls: {
  977. // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
  978. // // user documentation.
  979. // userDocumentationURL: 'https://docs.example.com/video-meetings.html',
  980. // // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
  981. // // to the specified URL for an app download page.
  982. // downloadAppsUrl: 'https://docs.example.com/our-apps.html',
  983. // },
  984. // Options related to the remote participant menu.
  985. // remoteVideoMenu: {
  986. // // Whether the remote video context menu to be rendered or not.
  987. // disabled: true,
  988. // // If set to true the 'Kick out' button will be disabled.
  989. // disableKick: true,
  990. // // If set to true the 'Grant moderator' button will be disabled.
  991. // disableGrantModerator: true,
  992. // // If set to true the 'Send private message' button will be disabled.
  993. // disablePrivateChat: true,
  994. // },
  995. // Endpoint that enables support for salesforce integration with in-meeting resource linking
  996. // This is required for:
  997. // listing the most recent records - salesforceUrl/records/recents
  998. // searching records - salesforceUrl/records?text=${text}
  999. // retrieving record details - salesforceUrl/records/${id}?type=${type}
  1000. // and linking the meeting - salesforceUrl/sessions/${sessionId}/records/${id}
  1001. //
  1002. // salesforceUrl: 'https://api.example.com/',
  1003. // If set to true all muting operations of remote participants will be disabled.
  1004. // disableRemoteMute: true,
  1005. // Enables support for lip-sync for this client (if the browser supports it).
  1006. // enableLipSync: false,
  1007. /**
  1008. External API url used to receive branding specific information.
  1009. If there is no url set or there are missing fields, the defaults are applied.
  1010. The config file should be in JSON.
  1011. None of the fields are mandatory and the response must have the shape:
  1012. {
  1013. // The domain url to apply (will replace the domain in the sharing conference link/embed section)
  1014. inviteDomain: 'example-company.org,
  1015. // The hex value for the colour used as background
  1016. backgroundColor: '#fff',
  1017. // The url for the image used as background
  1018. backgroundImageUrl: 'https://example.com/background-img.png',
  1019. // The anchor url used when clicking the logo image
  1020. logoClickUrl: 'https://example-company.org',
  1021. // The url used for the image used as logo
  1022. logoImageUrl: 'https://example.com/logo-img.png',
  1023. // Overwrite for pool of background images for avatars
  1024. avatarBackgrounds: ['url(https://example.com/avatar-background-1.png)', '#FFF'],
  1025. // The lobby/prejoin screen background
  1026. premeetingBackground: 'url(https://example.com/premeeting-background.png)',
  1027. // A list of images that can be used as video backgrounds.
  1028. // When this field is present, the default images will be replaced with those provided.
  1029. virtualBackgrounds: ['https://example.com/img.jpg'],
  1030. // Object containing a theme's properties. It also supports partial overwrites of the main theme.
  1031. // For a list of all possible theme tokens and their current defaults, please check:
  1032. // https://github.com/jitsi/jitsi-meet/tree/master/resources/custom-theme/custom-theme.json
  1033. // For a short explanations on each of the tokens, please check:
  1034. // https://github.com/jitsi/jitsi-meet/blob/master/react/features/base/ui/Tokens.ts
  1035. // IMPORTANT!: This is work in progress so many of the various tokens are not yet applied in code
  1036. // or they are partially applied.
  1037. customTheme: {
  1038. palette: {
  1039. ui01: "orange !important",
  1040. ui02: "maroon",
  1041. surface02: 'darkgreen',
  1042. ui03: "violet",
  1043. ui04: "magenta",
  1044. ui05: "blueviolet",
  1045. action01: 'green',
  1046. action01Hover: 'lightgreen',
  1047. disabled01: 'beige',
  1048. success02: 'cadetblue',
  1049. action02Hover: 'aliceblue',
  1050. },
  1051. typography: {
  1052. labelRegular: {
  1053. fontSize: 25,
  1054. lineHeight: 30,
  1055. fontWeight: 500,
  1056. }
  1057. }
  1058. }
  1059. }
  1060. */
  1061. // dynamicBrandingUrl: '',
  1062. // Options related to the participants pane.
  1063. // participantsPane: {
  1064. // // Hides the moderator settings tab.
  1065. // hideModeratorSettingsTab: false,
  1066. // // Hides the more actions button.
  1067. // hideMoreActionsButton: false,
  1068. // // Hides the mute all button.
  1069. // hideMuteAllButton: false,
  1070. // },
  1071. // Options related to the breakout rooms feature.
  1072. // breakoutRooms: {
  1073. // // Hides the add breakout room button. This replaces `hideAddRoomButton`.
  1074. // hideAddRoomButton: false,
  1075. // // Hides the auto assign participants button.
  1076. // hideAutoAssignButton: false,
  1077. // // Hides the join breakout room button.
  1078. // hideJoinRoomButton: false,
  1079. // },
  1080. // When true the user cannot add more images to be used as virtual background.
  1081. // Only the default ones from will be available.
  1082. // disableAddingBackgroundImages: false,
  1083. // Disables using screensharing as virtual background.
  1084. // disableScreensharingVirtualBackground: false,
  1085. // Sets the background transparency level. '0' is fully transparent, '1' is opaque.
  1086. // backgroundAlpha: 1,
  1087. // The URL of the moderated rooms microservice, if available. If it
  1088. // is present, a link to the service will be rendered on the welcome page,
  1089. // otherwise the app doesn't render it.
  1090. // moderatedRoomServiceUrl: 'https://moderated.jitsi-meet.example.com',
  1091. // If true, tile view will not be enabled automatically when the participants count threshold is reached.
  1092. // disableTileView: true,
  1093. // If true, the tiles will be displayed contained within the available space rather than enlarged to cover it,
  1094. // with a 16:9 aspect ratio (old behaviour).
  1095. // disableTileEnlargement: true,
  1096. // Controls the visibility and behavior of the top header conference info labels.
  1097. // If a label's id is not in any of the 2 arrays, it will not be visible at all on the header.
  1098. // conferenceInfo: {
  1099. // // those labels will not be hidden in tandem with the toolbox.
  1100. // alwaysVisible: ['recording', 'raised-hands-count'],
  1101. // // those labels will be auto-hidden in tandem with the toolbox buttons.
  1102. // autoHide: [
  1103. // 'subject',
  1104. // 'conference-timer',
  1105. // 'participants-count',
  1106. // 'e2ee',
  1107. // 'transcribing',
  1108. // 'video-quality',
  1109. // 'insecure-room',
  1110. // 'highlight-moment',
  1111. // 'top-panel-toggle',
  1112. // ]
  1113. // },
  1114. // Hides the conference subject
  1115. // hideConferenceSubject: false,
  1116. // Hides the conference timer.
  1117. // hideConferenceTimer: false,
  1118. // Hides the recording label
  1119. // hideRecordingLabel: false,
  1120. // Hides the participants stats
  1121. // hideParticipantsStats: true,
  1122. // Sets the conference subject
  1123. // subject: 'Conference Subject',
  1124. // Sets the conference local subject
  1125. // localSubject: 'Conference Local Subject',
  1126. // This property is related to the use case when jitsi-meet is used via the IFrame API. When the property is true
  1127. // jitsi-meet will use the local storage of the host page instead of its own. This option is useful if the browser
  1128. // is not persisting the local storage inside the iframe.
  1129. // useHostPageLocalStorage: true,
  1130. // Etherpad ("shared document") integration.
  1131. //
  1132. // If set, add a "Open shared document" link to the bottom right menu that
  1133. // will open an etherpad document.
  1134. // etherpad_base: 'https://your-etherpad-installati.on/p/',
  1135. // To enable information about dial-in access to meetings you need to provide
  1136. // dialInNumbersUrl and dialInConfCodeUrl.
  1137. // dialInNumbersUrl returns a json array of numbers that can be used for dial-in.
  1138. // {"countryCode":"US","tollFree":false,"formattedNumber":"+1 123-456-7890"}
  1139. // dialInConfCodeUrl is the conference mapper converting a meeting id to a PIN used for dial-in
  1140. // or the other way around (more info in resources/cloud-api.swagger)
  1141. // List of undocumented settings used in jitsi-meet
  1142. /**
  1143. _immediateReloadThreshold
  1144. debug
  1145. debugAudioLevels
  1146. deploymentInfo
  1147. dialOutAuthUrl
  1148. dialOutCodesUrl
  1149. dialOutRegionUrl
  1150. disableRemoteControl
  1151. displayJids
  1152. e2eeLabels
  1153. firefox_fake_device
  1154. googleApiApplicationClientID
  1155. iAmRecorder
  1156. iAmSipGateway
  1157. microsoftApiApplicationClientID
  1158. peopleSearchQueryTypes
  1159. peopleSearchUrl
  1160. requireDisplayName
  1161. tokenAuthUrl
  1162. */
  1163. /**
  1164. * This property can be used to alter the generated meeting invite links (in combination with a branding domain
  1165. * which is retrieved internally by jitsi meet) (e.g. https://meet.jit.si/someMeeting
  1166. * can become https://brandedDomain/roomAlias)
  1167. */
  1168. // brandingRoomAlias: null,
  1169. // List of undocumented settings used in lib-jitsi-meet
  1170. /**
  1171. _peerConnStatusOutOfLastNTimeout
  1172. _peerConnStatusRtcMuteTimeout
  1173. avgRtpStatsN
  1174. callStatsConfIDNamespace
  1175. callStatsCustomScriptUrl
  1176. desktopSharingSources
  1177. disableAEC
  1178. disableAGC
  1179. disableAP
  1180. disableHPF
  1181. disableLocalStats
  1182. disableNS
  1183. enableTalkWhileMuted
  1184. forceJVB121Ratio
  1185. forceTurnRelay
  1186. hiddenDomain
  1187. hiddenFromRecorderFeatureEnabled
  1188. ignoreStartMuted
  1189. websocketKeepAlive
  1190. websocketKeepAliveUrl
  1191. */
  1192. /**
  1193. * Default interval (milliseconds) for triggering mouseMoved iframe API event
  1194. */
  1195. mouseMoveCallbackInterval: 1000,
  1196. /**
  1197. Use this array to configure which notifications will be shown to the user
  1198. The items correspond to the title or description key of that notification
  1199. Some of these notifications also depend on some other internal logic to be displayed or not,
  1200. so adding them here will not ensure they will always be displayed
  1201. A falsy value for this prop will result in having all notifications enabled (e.g null, undefined, false)
  1202. */
  1203. // notifications: [
  1204. // 'connection.CONNFAIL', // shown when the connection fails,
  1205. // 'dialog.cameraNotSendingData', // shown when there's no feed from user's camera
  1206. // 'dialog.kickTitle', // shown when user has been kicked
  1207. // 'dialog.liveStreaming', // livestreaming notifications (pending, on, off, limits)
  1208. // 'dialog.lockTitle', // shown when setting conference password fails
  1209. // 'dialog.maxUsersLimitReached', // shown when maximmum users limit has been reached
  1210. // 'dialog.micNotSendingData', // shown when user's mic is not sending any audio
  1211. // 'dialog.passwordNotSupportedTitle', // shown when setting conference password fails due to password format
  1212. // 'dialog.recording', // recording notifications (pending, on, off, limits)
  1213. // 'dialog.remoteControlTitle', // remote control notifications (allowed, denied, start, stop, error)
  1214. // 'dialog.reservationError',
  1215. // 'dialog.serviceUnavailable', // shown when server is not reachable
  1216. // 'dialog.sessTerminated', // shown when there is a failed conference session
  1217. // 'dialog.sessionRestarted', // show when a client reload is initiated because of bridge migration
  1218. // 'dialog.tokenAuthFailed', // show when an invalid jwt is used
  1219. // 'dialog.transcribing', // transcribing notifications (pending, off)
  1220. // 'dialOut.statusMessage', // shown when dial out status is updated.
  1221. // 'liveStreaming.busy', // shown when livestreaming service is busy
  1222. // 'liveStreaming.failedToStart', // shown when livestreaming fails to start
  1223. // 'liveStreaming.unavailableTitle', // shown when livestreaming service is not reachable
  1224. // 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected
  1225. // 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied
  1226. // 'notify.chatMessages', // shown when receiving chat messages while the chat window is closed
  1227. // 'notify.disconnected', // shown when a participant has left
  1228. // 'notify.connectedOneMember', // show when a participant joined
  1229. // 'notify.connectedTwoMembers', // show when two participants joined simultaneously
  1230. // 'notify.connectedThreePlusMembers', // show when more than 2 participants joined simultaneously
  1231. // 'notify.leftOneMember', // show when a participant left
  1232. // 'notify.leftTwoMembers', // show when two participants left simultaneously
  1233. // 'notify.leftThreePlusMembers', // show when more than 2 participants left simultaneously
  1234. // 'notify.grantedTo', // shown when moderator rights were granted to a participant
  1235. // 'notify.hostAskedUnmute', // shown to participant when host asks them to unmute
  1236. // 'notify.invitedOneMember', // shown when 1 participant has been invited
  1237. // 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited
  1238. // 'notify.invitedTwoMembers', // shown when 2 participants have been invited
  1239. // 'notify.kickParticipant', // shown when a participant is kicked
  1240. // 'notify.linkToSalesforce', // shown when joining a meeting with salesforce integration
  1241. // 'notify.moderationStartedTitle', // shown when AV moderation is activated
  1242. // 'notify.moderationStoppedTitle', // shown when AV moderation is deactivated
  1243. // 'notify.moderationInEffectTitle', // shown when user attempts to unmute audio during AV moderation
  1244. // 'notify.moderationInEffectVideoTitle', // shown when user attempts to enable video during AV moderation
  1245. // 'notify.moderationInEffectCSTitle', // shown when user attempts to share content during AV moderation
  1246. // 'notify.mutedRemotelyTitle', // shown when user is muted by a remote party
  1247. // 'notify.mutedTitle', // shown when user has been muted upon joining,
  1248. // 'notify.newDeviceAudioTitle', // prompts the user to use a newly detected audio device
  1249. // 'notify.newDeviceCameraTitle', // prompts the user to use a newly detected camera
  1250. // 'notify.participantWantsToJoin', // shown when lobby is enabled and participant requests to join meeting
  1251. // 'notify.passwordRemovedRemotely', // shown when a password has been removed remotely
  1252. // 'notify.passwordSetRemotely', // shown when a password has been set remotely
  1253. // 'notify.raisedHand', // shown when a partcipant used raise hand,
  1254. // 'notify.startSilentTitle', // shown when user joined with no audio
  1255. // 'notify.unmute', // shown to moderator when user raises hand during AV moderation
  1256. // 'notify.videoMutedRemotelyTitle', // shown when user's video is muted by a remote party,
  1257. // 'prejoin.errorDialOut',
  1258. // 'prejoin.errorDialOutDisconnected',
  1259. // 'prejoin.errorDialOutFailed',
  1260. // 'prejoin.errorDialOutStatus',
  1261. // 'prejoin.errorStatusCode',
  1262. // 'prejoin.errorValidation',
  1263. // 'recording.busy', // shown when recording service is busy
  1264. // 'recording.failedToStart', // shown when recording fails to start
  1265. // 'recording.unavailableTitle', // shown when recording service is not reachable
  1266. // 'toolbar.noAudioSignalTitle', // shown when a broken mic is detected
  1267. // 'toolbar.noisyAudioInputTitle', // shown when noise is detected for the current microphone
  1268. // 'toolbar.talkWhileMutedPopup', // shown when user tries to speak while muted
  1269. // 'transcribing.failedToStart', // shown when transcribing fails to start
  1270. // ],
  1271. // List of notifications to be disabled. Works in tandem with the above setting.
  1272. // disabledNotifications: [],
  1273. // Prevent the filmstrip from autohiding when screen width is under a certain threshold
  1274. // disableFilmstripAutohiding: false,
  1275. // filmstrip: {
  1276. // // Disables user resizable filmstrip. Also, allows configuration of the filmstrip
  1277. // // (width, tiles aspect ratios) through the interfaceConfig options.
  1278. // disableResizable: false,
  1279. // // Disables the stage filmstrip
  1280. // // (displaying multiple participants on stage besides the vertical filmstrip)
  1281. // disableStageFilmstrip: false,
  1282. // // Default number of participants that can be displayed on stage.
  1283. // // The user can change this in settings. Number must be between 1 and 6.
  1284. // stageFilmstripParticipants: 1,
  1285. // // Disables the top panel (only shown when a user is sharing their screen).
  1286. // disableTopPanel: false,
  1287. // // The minimum number of participants that must be in the call for
  1288. // // the top panel layout to be used.
  1289. // minParticipantCountForTopPanel: 50,
  1290. // },
  1291. // Tile view related config options.
  1292. // tileView: {
  1293. // // The optimal number of tiles that are going to be shown in tile view. Depending on the screen size it may
  1294. // // not be possible to show the exact number of participants specified here.
  1295. // numberOfVisibleTiles: 25,
  1296. // },
  1297. // Specifies whether the chat emoticons are disabled or not
  1298. // disableChatSmileys: false,
  1299. // Settings for the GIPHY integration.
  1300. // giphy: {
  1301. // // Whether the feature is enabled or not.
  1302. // enabled: false,
  1303. // // SDK API Key from Giphy.
  1304. // sdkKey: '',
  1305. // // Display mode can be one of:
  1306. // // - tile: show the GIF on the tile of the participant that sent it.
  1307. // // - chat: show the GIF as a message in chat
  1308. // // - all: all of the above. This is the default option
  1309. // displayMode: 'all',
  1310. // // How long the GIF should be displayed on the tile (in milliseconds).
  1311. // tileTime: 5000,
  1312. // // Limit results by rating: g, pg, pg-13, r. Default value: g.
  1313. // rating: 'pg',
  1314. // // The proxy server url for giphy requests in the web app.
  1315. // proxyUrl: 'https://giphy-proxy.example.com',
  1316. // },
  1317. // Logging
  1318. // logging: {
  1319. // // Default log level for the app and lib-jitsi-meet.
  1320. // defaultLogLevel: 'trace',
  1321. // // Option to disable LogCollector (which stores the logs on CallStats).
  1322. // //disableLogCollector: true,
  1323. // // Individual loggers are customizable.
  1324. // loggers: {
  1325. // // The following are too verbose in their logging with the default level.
  1326. // 'modules/RTC/TraceablePeerConnection.js': 'info',
  1327. // 'modules/statistics/CallStats.js': 'info',
  1328. // 'modules/xmpp/strophe.util.js': 'log',
  1329. // },
  1330. // Application logo url
  1331. // defaultLogoUrl: 'images/watermark.svg',
  1332. // Settings for the Excalidraw whiteboard integration.
  1333. // whiteboard: {
  1334. // // Whether the feature is enabled or not.
  1335. // enabled: true,
  1336. // // The server used to support whiteboard collaboration.
  1337. // // https://github.com/jitsi/excalidraw-backend
  1338. // collabServerBaseUrl: 'https://excalidraw-backend.example.com',
  1339. // },
  1340. };
  1341. // Temporary backwards compatibility with old mobile clients.
  1342. config.flags = config.flags || {};
  1343. config.flags.sourceNameSignaling = true;
  1344. config.flags.sendMultipleVideoStreams = true;
  1345. config.flags.receiveMultipleVideoStreams = true;
  1346. // Set the default values for JaaS customers
  1347. if (enableJaaS) {
  1348. config.dialInNumbersUrl = 'https://conference-mapper.jitsi.net/v1/access/dids';
  1349. config.dialInConfCodeUrl = 'https://conference-mapper.jitsi.net/v1/access';
  1350. config.roomPasswordNumberOfDigits = 10; // skip re-adding it (do not remove comment)
  1351. }