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

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