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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  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. // websocketKeepAliveUrl: 'https://jitsi-meet.example.com/' + subdir + '_unlock',
  41. // Whether BOSH should be preferred over WebSocket if both are configured.
  42. // preferBosh: false,
  43. // The real JID of focus participant - can be overridden here
  44. // Do not change username - FIXME: Make focus username configurable
  45. // https://github.com/jitsi/jitsi-meet/issues/7376
  46. // focusUserJid: 'focus@auth.jitsi-meet.example.com',
  47. // Option to send conference requests to jicofo over http (requires nginx rule for it)
  48. // conferenceRequestUrl:
  49. // 'https://<!--# echo var="http_host" default="jitsi-meet.example.com" -->/' + subdir + 'conference-request/v1',
  50. // Options related to the bridge (colibri) data channel
  51. bridgeChannel: {
  52. // If the backend advertises multiple colibri websockets, this options allows
  53. // to filter some of them out based on the domain name. We use the first URL
  54. // which does not match ignoreDomain, falling back to the first one that matches
  55. // ignoreDomain. Has no effect if undefined.
  56. // ignoreDomain: 'example.com',
  57. // Prefer SCTP (WebRTC data channels over the media path) over a colibri websocket.
  58. // If SCTP is available in the backend it will be used instead of a WS. Defaults to
  59. // false (SCTP is used only if available and no WS are available).
  60. // preferSctp: false
  61. },
  62. // Testing / experimental features.
  63. //
  64. testing: {
  65. // Allows the setting of a custom bandwidth value from the UI.
  66. // assumeBandwidth: true,
  67. // Enables use of getDisplayMedia in electron
  68. // electronUseGetDisplayMedia: false,
  69. // Enables AV1 codec for FF. Note: By default it is disabled.
  70. // enableAV1ForFF: false,
  71. // Enables the use of the codec selection API supported by the browsers .
  72. // enableCodecSelectionAPI: false,
  73. // P2P test mode disables automatic switching to P2P when there are 2
  74. // participants in the conference.
  75. // p2pTestMode: false,
  76. // Enables the test specific features consumed by jitsi-meet-torture
  77. // testMode: false,
  78. // Disables the auto-play behavior of *all* newly created video element.
  79. // This is useful when the client runs on a host with limited resources.
  80. // noAutoPlayVideo: false,
  81. // Experiment: Whether to skip interim transcriptions.
  82. // skipInterimTranscriptions: false,
  83. // Dump transcripts to a <transcript> element for debugging.
  84. // dumpTranscript: false,
  85. // Log the audio levels.
  86. // debugAudioLevels: true,
  87. // Will replace ice candidates IPs with invalid ones in order to fail ice.
  88. // failICE: true,
  89. },
  90. // Disables moderator indicators.
  91. // disableModeratorIndicator: false,
  92. // Disables the reactions feature.
  93. // disableReactions: true,
  94. // Disables the reactions moderation feature.
  95. // disableReactionsModeration: false,
  96. // Disables the reactions in chat feature.
  97. // disableReactionsInChat: false,
  98. // Disables polls feature.
  99. // disablePolls: false,
  100. // Disables demote button from self-view
  101. // disableSelfDemote: false,
  102. // Disables self-view tile. (hides it from tile view and from filmstrip)
  103. // disableSelfView: false,
  104. // Disables self-view settings in UI
  105. // disableSelfViewSettings: false,
  106. // screenshotCapture : {
  107. // Enables the screensharing capture feature.
  108. // enabled: false,
  109. //
  110. // The mode for the screenshot capture feature.
  111. // Can be either 'recording' - screensharing screenshots are taken
  112. // only when the recording is also on,
  113. // or 'always' - screensharing screenshots are always taken.
  114. // mode: 'recording',
  115. // }
  116. // Disables ICE/UDP by filtering out local and remote UDP candidates in
  117. // signalling.
  118. // webrtcIceUdpDisable: false,
  119. // Disables ICE/TCP by filtering out local and remote TCP candidates in
  120. // signalling.
  121. // webrtcIceTcpDisable: false,
  122. // Media
  123. //
  124. // Audio
  125. // Disable measuring of audio levels.
  126. // disableAudioLevels: false,
  127. // audioLevelsInterval: 200,
  128. // Enabling this will run the lib-jitsi-meet no audio detection module which
  129. // will notify the user if the current selected microphone has no audio
  130. // input and will suggest another valid device if one is present.
  131. enableNoAudioDetection: true,
  132. // Enabling this will show a "Save Logs" link in the GSM popover that can be
  133. // used to collect debug information (XMPP IQs, SDP offer/answer cycles)
  134. // about the call.
  135. // enableSaveLogs: false,
  136. // Enabling this will hide the "Show More" link in the GSM popover that can be
  137. // used to display more statistics about the connection (IP, Port, protocol, etc).
  138. // disableShowMoreStats: true,
  139. // Enabling this will run the lib-jitsi-meet noise detection module which will
  140. // notify the user if there is noise, other than voice, coming from the current
  141. // selected microphone. The purpose it to let the user know that the input could
  142. // be potentially unpleasant for other meeting participants.
  143. enableNoisyMicDetection: true,
  144. // Start the conference in audio only mode (no video is being received nor
  145. // sent).
  146. // startAudioOnly: false,
  147. // Every participant after the Nth will start audio muted.
  148. // startAudioMuted: 10,
  149. // Start calls with audio muted. Unlike the option above, this one is only
  150. // applied locally. FIXME: having these 2 options is confusing.
  151. // startWithAudioMuted: false,
  152. // Enabling it (with #params) will disable local audio output of remote
  153. // participants and to enable it back a reload is needed.
  154. // startSilent: false,
  155. // Enables support for opus-red (redundancy for Opus).
  156. // enableOpusRed: false,
  157. // Specify audio quality stereo and opusMaxAverageBitrate values in order to enable HD audio.
  158. // Beware, by doing so, you are disabling echo cancellation, noise suppression and AGC.
  159. // Specify enableOpusDtx to enable support for opus-dtx where
  160. // audio packets won’t be transmitted while participant is silent or muted.
  161. // audioQuality: {
  162. // stereo: false,
  163. // opusMaxAverageBitrate: null, // Value to fit the 6000 to 510000 range.
  164. // enableOpusDtx: false,
  165. // },
  166. // Noise suppression configuration. By default rnnoise is used. Optionally Krisp
  167. // can be used by enabling it below, but the Krisp JS SDK files must be supplied in your
  168. // installation. Specifically, these files are needed:
  169. // - https://meet.example.com/libs/krisp/krisp.mjs
  170. // - https://meet.example.com/libs/krisp/models/model_8.kw
  171. // - https://meet.example.com/libs/krisp/models/model_nc.kw
  172. // - https://meet.example.com/libs/krisp/models/model_bvc.kw
  173. // - https://meet.example.com/libs/krisp/assets/bvc-allowed.txt
  174. // In case when you have known BVC supported devices and you want to extend allowed devices list
  175. // - https://meet.example.com/libs/krisp/assets/bvc-allowed-ext.txt
  176. // In case when you have known BVC supported devices and you want to extend allowed devices list
  177. // - https://meet.example.com/libs/krisp/models/model_inbound_8.kw
  178. // - https://meet.example.com/libs/krisp/models/model_inbound_16.kw
  179. // In case when you want to use inbound noise suppression models
  180. // NOTE: Krisp JS SDK v2.0.0 was tested.
  181. // noiseSuppression: {
  182. // krisp: {
  183. // enabled: false,
  184. // logProcessStats: false,
  185. // debugLogs: false,
  186. // useBVC: false,
  187. // bufferOverflowMS: 1000,
  188. // inboundModels: {
  189. // modelInbound8: 'model_inbound_8.kef',
  190. // modelInbound16: 'model_inbound_16.kef',
  191. // },
  192. // preloadInboundModels: {
  193. // modelInbound8: 'model_inbound_8.kef',
  194. // modelInbound16: 'model_inbound_16.kef',
  195. // },
  196. // preloadModels: {
  197. // modelBVC: 'model_bvc.kef',
  198. // model8: 'model_8.kef',
  199. // modelNC: 'model_nc_mq.kef',
  200. // },
  201. // models: {
  202. // modelBVC: 'model_bvc.kef',
  203. // model8: 'model_8.kef',
  204. // modelNV: 'model_nc_mq.kef',
  205. // },
  206. // bvc: {
  207. // allowedDevices: 'bvc-allowed.txt',
  208. // allowedDevicesExt: 'bvc-allowed-ext.txt',
  209. // }
  210. // },
  211. // },
  212. // Video
  213. // Sets the default camera facing mode.
  214. // cameraFacingMode: 'user',
  215. // Sets the preferred resolution (height) for local video. Defaults to 720.
  216. // resolution: 720,
  217. // DEPRECATED. Please use raisedHands.disableRemoveRaisedHandOnFocus instead.
  218. // Specifies whether the raised hand will hide when someone becomes a dominant speaker or not
  219. // disableRemoveRaisedHandOnFocus: false,
  220. // Specifies which raised hand related config should be set.
  221. // raisedHands: {
  222. // // Specifies whether the raised hand can be lowered by moderator.
  223. // disableLowerHandByModerator: false,
  224. // // Specifies whether there is a notification before hiding the raised hand
  225. // // when someone becomes the dominant speaker.
  226. // disableLowerHandNotification: true,
  227. // // Specifies whether there is a notification when you are the next speaker in line.
  228. // disableNextSpeakerNotification: false,
  229. // // Specifies whether the raised hand will hide when someone becomes a dominant speaker or not.
  230. // disableRemoveRaisedHandOnFocus: false,
  231. // },
  232. // speakerStats: {
  233. // // Specifies whether the speaker stats is enable or not.
  234. // disabled: false,
  235. // // Specifies whether there will be a search field in speaker stats or not.
  236. // disableSearch: false,
  237. // // Specifies whether participants in speaker stats should be ordered or not, and with what priority.
  238. // // 'role', <- Moderators on top.
  239. // // 'name', <- Alphabetically by name.
  240. // // 'hasLeft', <- The ones that have left in the bottom.
  241. // order: [
  242. // 'role',
  243. // 'name',
  244. // 'hasLeft',
  245. // ],
  246. // },
  247. // DEPRECATED. Please use speakerStats.disableSearch instead.
  248. // Specifies whether there will be a search field in speaker stats or not
  249. // disableSpeakerStatsSearch: false,
  250. // DEPRECATED. Please use speakerStats.order .
  251. // Specifies whether participants in speaker stats should be ordered or not, and with what priority
  252. // speakerStatsOrder: [
  253. // 'role', <- Moderators on top
  254. // 'name', <- Alphabetically by name
  255. // 'hasLeft', <- The ones that have left in the bottom
  256. // ], <- the order of the array elements determines priority
  257. // How many participants while in the tile view mode, before the receiving video quality is reduced from HD to SD.
  258. // Use -1 to disable.
  259. // maxFullResolutionParticipants: 2,
  260. // w3c spec-compliant video constraints to use for video capture. Currently
  261. // used by browsers that return true from lib-jitsi-meet's
  262. // util#browser#usesNewGumFlow. The constraints are independent from
  263. // this config's resolution value. Defaults to requesting an ideal
  264. // resolution of 720p.
  265. // constraints: {
  266. // video: {
  267. // height: {
  268. // ideal: 720,
  269. // max: 720,
  270. // min: 240,
  271. // },
  272. // },
  273. // },
  274. // Enable / disable simulcast support.
  275. // disableSimulcast: false,
  276. // Every participant after the Nth will start video muted.
  277. // startVideoMuted: 10,
  278. // Start calls with video muted. Unlike the option above, this one is only
  279. // applied locally. FIXME: having these 2 options is confusing.
  280. // startWithVideoMuted: false,
  281. // Desktop sharing
  282. // Optional desktop sharing frame rate options. Default value: min:5, max:5.
  283. // desktopSharingFrameRate: {
  284. // min: 5,
  285. // max: 5,
  286. // },
  287. // Optional screenshare settings that give more control over screen capture in the browser.
  288. // screenShareSettings: {
  289. // // Show users the current tab is the preferred capture source, default: false.
  290. // desktopPreferCurrentTab: false,
  291. // // Allow users to select system audio, default: include.
  292. // desktopSystemAudio: 'include',
  293. // // Allow users to seamlessly switch which tab they are sharing without having to select the tab again.
  294. // desktopSurfaceSwitching: 'include',
  295. // // Allow a user to be shown a preference for what screen is to be captured, default: unset.
  296. // desktopDisplaySurface: undefined,
  297. // // Allow users to select the current tab as a capture source, default: exclude.
  298. // desktopSelfBrowserSurface: 'exclude'
  299. // },
  300. // Recording
  301. // Enable the dropbox integration.
  302. // dropbox: {
  303. // appKey: '<APP_KEY>', // Specify your app key here.
  304. // // A URL to redirect the user to, after authenticating
  305. // // by default uses:
  306. // // 'https://jitsi-meet.example.com/static/oauth.html'
  307. // redirectURI:
  308. // 'https://jitsi-meet.example.com/subfolder/static/oauth.html',
  309. // },
  310. // configuration for all things recording related. Existing settings will be migrated here in the future.
  311. // recordings: {
  312. // // IF true (default) recording audio and video is selected by default in the recording dialog.
  313. // // recordAudioAndVideo: true,
  314. // // If true, shows a notification at the start of the meeting with a call to action button
  315. // // to start recording (for users who can do so).
  316. // // suggestRecording: true,
  317. // // If true, shows a warning label in the prejoin screen to point out the possibility that
  318. // // the call you're joining might be recorded.
  319. // // showPrejoinWarning: true,
  320. // // If true, the notification for recording start will display a link to download the cloud recording.
  321. // // showRecordingLink: true,
  322. // // If true, mutes audio and video when a recording begins and displays a dialog
  323. // // explaining the effect of unmuting.
  324. // // requireConsent: true,
  325. // // If true consent will be skipped for users who are already in the meeting.
  326. // // skipConsentInMeeting: true,
  327. // // Link for the recording consent dialog's "Learn more" link.
  328. // // consentLearnMoreLink: 'https://jitsi.org/meet/consent',
  329. // },
  330. // recordingService: {
  331. // // When integrations like dropbox are enabled only that will be shown,
  332. // // by enabling fileRecordingsServiceEnabled, we show both the integrations
  333. // // and the generic recording service (its configuration and storage type
  334. // // depends on jibri configuration)
  335. // enabled: false,
  336. // // Whether to show the possibility to share file recording with other people
  337. // // (e.g. meeting participants), based on the actual implementation
  338. // // on the backend.
  339. // sharingEnabled: false,
  340. // // Hide the warning that says we only store the recording for 24 hours.
  341. // hideStorageWarning: false,
  342. // },
  343. // DEPRECATED. Use recordingService.enabled instead.
  344. // fileRecordingsServiceEnabled: false,
  345. // DEPRECATED. Use recordingService.sharingEnabled instead.
  346. // fileRecordingsServiceSharingEnabled: false,
  347. // Local recording configuration.
  348. // localRecording: {
  349. // // Whether to disable local recording or not.
  350. // disable: false,
  351. // // Whether to notify all participants when a participant is recording locally.
  352. // notifyAllParticipants: false,
  353. // // Whether to disable the self recording feature (only local participant streams).
  354. // disableSelfRecording: false,
  355. // },
  356. // Customize the Live Streaming dialog. Can be modified for a non-YouTube provider.
  357. // liveStreaming: {
  358. // // Whether to enable live streaming or not.
  359. // enabled: false,
  360. // // Terms link
  361. // termsLink: 'https://www.youtube.com/t/terms',
  362. // // Data privacy link
  363. // dataPrivacyLink: 'https://policies.google.com/privacy',
  364. // // RegExp string that validates the stream key input field
  365. // validatorRegExpString: '^(?:[a-zA-Z0-9]{4}(?:-(?!$)|$)){4}',
  366. // // Documentation reference for the live streaming feature.
  367. // helpLink: 'https://jitsi.org/live'
  368. // },
  369. // DEPRECATED. Use liveStreaming.enabled instead.
  370. // liveStreamingEnabled: false,
  371. // DEPRECATED. Use transcription.enabled instead.
  372. // transcribingEnabled: false,
  373. // DEPRECATED. Use transcription.useAppLanguage instead.
  374. // transcribeWithAppLanguage: true,
  375. // DEPRECATED. Use transcription.preferredLanguage instead.
  376. // preferredTranscribeLanguage: 'en-US',
  377. // DEPRECATED. Use transcription.autoTranscribeOnRecord instead.
  378. // autoCaptionOnRecord: false,
  379. // Transcription options.
  380. // transcription: {
  381. // // Whether the feature should be enabled or not.
  382. // enabled: false,
  383. // // Translation languages.
  384. // // Available languages can be found in
  385. // // ./lang/translation-languages.json.
  386. // translationLanguages: ['en', 'es', 'fr', 'ro'],
  387. // // Important languages to show on the top of the language list.
  388. // translationLanguagesHead: ['en'],
  389. // // If true transcriber will use the application language.
  390. // // The application language is either explicitly set by participants in their settings or automatically
  391. // // detected based on the environment, e.g. if the app is opened in a chrome instance which
  392. // // is using french as its default language then transcriptions for that participant will be in french.
  393. // // Defaults to true.
  394. // useAppLanguage: true,
  395. // // Transcriber language. This settings will only work if "useAppLanguage"
  396. // // is explicitly set to false.
  397. // // Available languages can be found in
  398. // // ./src/react/features/transcribing/transcriber-langs.json.
  399. // preferredLanguage: 'en-US',
  400. // // Enables automatic turning on transcribing when recording is started
  401. // autoTranscribeOnRecord: false,
  402. // // Enables automatic request of subtitles when transcriber is present in the meeting, uses the default
  403. // // language that is set
  404. // autoCaptionOnTranscribe: false,
  405. //
  406. // // Disables everything related to closed captions - the tab in the chat area, the button in the menu,
  407. // // subtitles on stage and the "Show subtitles on stage" checkbox in the settings.
  408. // // Note: Starting transcriptions from the recording dialog will still work.
  409. // disableClosedCaptions: false
  410. // },
  411. // Misc
  412. // Default value for the channel "last N" attribute. -1 for unlimited.
  413. channelLastN: -1,
  414. // Connection indicators
  415. // connectionIndicators: {
  416. // autoHide: true,
  417. // autoHideTimeout: 5000,
  418. // disabled: false,
  419. // disableDetails: false,
  420. // inactiveDisabled: false
  421. // },
  422. // Provides a way for the lastN value to be controlled through the UI.
  423. // When startLastN is present, conference starts with a last-n value of startLastN and channelLastN
  424. // value will be used when the quality level is selected using "Manage Video Quality" slider.
  425. // startLastN: 1,
  426. // Specify the settings for video quality optimizations on the client.
  427. // videoQuality: {
  428. //
  429. // // Provides a way to set the codec preference on desktop based endpoints.
  430. // codecPreferenceOrder: [ 'AV1', 'VP9', 'VP8', 'H264' ],
  431. //
  432. // // Provides a way to set the codec for screenshare.
  433. // screenshareCodec: 'AV1',
  434. // mobileScreenshareCodec: 'VP8',
  435. //
  436. // // Enables the adaptive mode in the client that will make runtime adjustments to selected codecs and received
  437. // // videos for a better user experience. This mode will kick in only when CPU overuse is reported in the
  438. // // WebRTC statistics for the outbound video streams.
  439. // enableAdaptiveMode: false,
  440. //
  441. // // Codec specific settings for scalability modes and max bitrates.
  442. // av1: {
  443. // maxBitratesVideo: {
  444. // low: 100000,
  445. // standard: 300000,
  446. // high: 1000000,
  447. // fullHd: 2000000,
  448. // ultraHd: 4000000,
  449. // ssHigh: 2500000
  450. // },
  451. // scalabilityModeEnabled: true,
  452. // useSimulcast: false,
  453. // useKSVC: true
  454. // },
  455. // h264: {
  456. // maxBitratesVideo: {
  457. // low: 200000,
  458. // standard: 500000,
  459. // high: 1500000,
  460. // fullHd: 3000000,
  461. // ultraHd: 6000000,
  462. // ssHigh: 2500000
  463. // },
  464. // scalabilityModeEnabled: true
  465. // },
  466. // vp8: {
  467. // maxBitratesVideo: {
  468. // low: 200000,
  469. // standard: 500000,
  470. // high: 1500000,
  471. // fullHd: 3000000,
  472. // ultraHd: 6000000,
  473. // ssHigh: 2500000
  474. // },
  475. // scalabilityModeEnabled: false
  476. // },
  477. // vp9: {
  478. // maxBitratesVideo: {
  479. // low: 100000,
  480. // standard: 300000,
  481. // high: 1200000,
  482. // fullHd: 2500000,
  483. // ultraHd: 5000000,
  484. // ssHigh: 2500000
  485. // },
  486. // scalabilityModeEnabled: true,
  487. // useSimulcast: false,
  488. // useKSVC: true
  489. // },
  490. //
  491. // // The options can be used to override default thresholds of video thumbnail heights corresponding to
  492. // // the video quality levels used in the application. At the time of this writing the allowed levels are:
  493. // // 'low' - for the low quality level (180p at the time of this writing)
  494. // // 'standard' - for the medium quality level (360p)
  495. // // 'high' - for the high quality level (720p)
  496. // // The keys should be positive numbers which represent the minimal thumbnail height for the quality level.
  497. // //
  498. // // With the default config value below the application will use 'low' quality until the thumbnails are
  499. // // at least 360 pixels tall. If the thumbnail height reaches 720 pixels then the application will switch to
  500. // // the high quality.
  501. // minHeightForQualityLvl: {
  502. // 360: 'standard',
  503. // 720: 'high',
  504. // },
  505. //
  506. // // Provides a way to set the codec preference on mobile devices, both on RN and mobile browser based endpoint
  507. // mobileCodecPreferenceOrder: [ 'VP8', 'VP9', 'H264', 'AV1' ],
  508. // },
  509. // Notification timeouts
  510. // notificationTimeouts: {
  511. // short: 2500,
  512. // medium: 5000,
  513. // long: 10000,
  514. // extraLong: 60000,
  515. // sticky: 0,
  516. // },
  517. // // Options for the recording limit notification.
  518. // recordingLimit: {
  519. //
  520. // // The recording limit in minutes. Note: This number appears in the notification text
  521. // // but doesn't enforce the actual recording time limit. This should be configured in
  522. // // jibri!
  523. // limit: 60,
  524. //
  525. // // The name of the app with unlimited recordings.
  526. // appName: 'Unlimited recordings APP',
  527. //
  528. // // The URL of the app with unlimited recordings.
  529. // appURL: 'https://unlimited.recordings.app.com/',
  530. // },
  531. // Disables or enables RTX (RFC 4588) (defaults to false).
  532. // disableRtx: false,
  533. // Moves all Jitsi Meet 'beforeunload' logic (cleanup, leaving, disconnecting, etc) to the 'unload' event.
  534. // disableBeforeUnloadHandlers: true,
  535. // Disables or enables TCC support in this client (default: enabled).
  536. // enableTcc: true,
  537. // Disables or enables REMB support in this client (default: enabled).
  538. // enableRemb: true,
  539. // Enables forced reload of the client when the call is migrated as a result of
  540. // the bridge going down.
  541. // enableForcedReload: true,
  542. // Use TURN/UDP servers for the jitsi-videobridge connection (by default
  543. // we filter out TURN/UDP because it is usually not needed since the
  544. // bridge itself is reachable via UDP)
  545. // useTurnUdp: false
  546. // Enable support for encoded transform in supported browsers. This allows
  547. // E2EE to work in Safari if the corresponding flag is enabled in the browser.
  548. // Experimental.
  549. // enableEncodedTransformSupport: false,
  550. // UI
  551. //
  552. // Disables responsive tiles.
  553. // disableResponsiveTiles: false,
  554. // DEPRECATED. Please use `securityUi?.hideLobbyButton` instead.
  555. // Hides lobby button.
  556. // hideLobbyButton: false,
  557. // DEPRECATED. Please use `lobby?.autoKnock` instead.
  558. // If Lobby is enabled starts knocking automatically.
  559. // autoKnockLobby: false,
  560. // DEPRECATED. Please use `lobby?.enableChat` instead.
  561. // Enable lobby chat.
  562. // enableLobbyChat: true,
  563. // DEPRECATED! Use `breakoutRooms.hideAddRoomButton` instead.
  564. // Hides add breakout room button
  565. // hideAddRoomButton: false,
  566. // Require users to always specify a display name.
  567. // requireDisplayName: true,
  568. // Enables webhid functionality for Audio.
  569. // enableWebHIDFeature: false,
  570. // DEPRECATED! Use 'welcomePage.disabled' instead.
  571. // Whether to use a welcome page or not. In case it's false a random room
  572. // will be joined when no room is specified.
  573. // enableWelcomePage: true,
  574. // Configs for welcome page.
  575. // welcomePage: {
  576. // // Whether to disable welcome page. In case it's disabled a random room
  577. // // will be joined when no room is specified.
  578. // disabled: false,
  579. // // If set, landing page will redirect to this URL.
  580. // customUrl: ''
  581. // },
  582. // Configs for the lobby screen.
  583. // lobby: {
  584. // // If Lobby is enabled, it starts knocking automatically. Replaces `autoKnockLobby`.
  585. // autoKnock: false,
  586. // // Enables the lobby chat. Replaces `enableLobbyChat`.
  587. // enableChat: true,
  588. // },
  589. // Configs for the security related UI elements.
  590. // securityUi: {
  591. // // Hides the lobby button. Replaces `hideLobbyButton`.
  592. // hideLobbyButton: false,
  593. // // Hides the possibility to set and enter a lobby password.
  594. // disableLobbyPassword: false,
  595. // },
  596. // Disable app shortcuts that are registered upon joining a conference
  597. // disableShortcuts: false,
  598. // Disable initial browser getUserMedia requests.
  599. // This is useful for scenarios where users might want to start a conference for screensharing only
  600. // disableInitialGUM: false,
  601. // Enabling the close page will ignore the welcome page redirection when
  602. // a call is hangup.
  603. // enableClosePage: false,
  604. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  605. // Setting this to null, will also disable showing the remote videos
  606. // when the toolbar is shown on mouse movements
  607. // disable1On1Mode: null | false | true,
  608. // Default local name to be displayed
  609. // defaultLocalDisplayName: 'me',
  610. // Default remote name to be displayed
  611. // defaultRemoteDisplayName: 'Fellow Jitster',
  612. // Hides the display name from the participant thumbnail
  613. // hideDisplayName: false,
  614. // Hides the dominant speaker name badge that hovers above the toolbox
  615. // hideDominantSpeakerBadge: false,
  616. // Default language for the user interface. Cannot be overwritten.
  617. // DEPRECATED! Use the `lang` iframe option directly instead.
  618. // defaultLanguage: 'en',
  619. // Disables profile and the edit of all fields from the profile settings (display name and email)
  620. // disableProfile: false,
  621. // Hides the email section under profile settings.
  622. // hideEmailInSettings: false,
  623. // When enabled the password used for locking a room is restricted to up to the number of digits specified
  624. // default: roomPasswordNumberOfDigits: false,
  625. // roomPasswordNumberOfDigits: 10,
  626. // Message to show the users. Example: 'The service will be down for
  627. // maintenance at 01:00 AM GMT,
  628. // noticeMessage: '',
  629. // Enables calendar integration, depends on googleApiApplicationClientID
  630. // and microsoftApiApplicationClientID
  631. // enableCalendarIntegration: false,
  632. // Whether to notify when the conference is terminated because it was destroyed.
  633. // notifyOnConferenceDestruction: true,
  634. // The client id for the google APIs used for the calendar integration, youtube livestreaming, etc.
  635. // googleApiApplicationClientID: '<client_id>',
  636. // Configs for prejoin page.
  637. // prejoinConfig: {
  638. // // When 'true', it shows an intermediate page before joining, where the user can configure their devices.
  639. // // This replaces `prejoinPageEnabled`. Defaults to true.
  640. // enabled: true,
  641. // // Hides the participant name editing field in the prejoin screen.
  642. // // If requireDisplayName is also set as true, a name should still be provided through
  643. // // either the jwt or the userInfo from the iframe api init object in order for this to have an effect.
  644. // hideDisplayName: false,
  645. // // List of buttons to hide from the extra join options dropdown.
  646. // hideExtraJoinButtons: ['no-audio', 'by-phone'],
  647. // // Configuration for pre-call test
  648. // // By setting preCallTestEnabled, you enable the pre-call test in the prejoin page.
  649. // // ICE server credentials need to be provided over the preCallTestICEUrl
  650. // preCallTestEnabled: false,
  651. // preCallTestICEUrl: ''
  652. // },
  653. // When 'true', the user cannot edit the display name.
  654. // (Mainly useful when used in conjunction with the JWT so the JWT name becomes read only.)
  655. // readOnlyName: false,
  656. // If etherpad integration is enabled, setting this to true will
  657. // automatically open the etherpad when a participant joins. This
  658. // does not affect the mobile app since opening an etherpad
  659. // obscures the conference controls -- it's better to let users
  660. // choose to open the pad on their own in that case.
  661. // openSharedDocumentOnJoin: false,
  662. // If true, shows the unsafe room name warning label when a room name is
  663. // deemed unsafe (due to the simplicity in the name) and a password is not
  664. // set or the lobby is not enabled.
  665. // enableInsecureRoomNameWarning: false,
  666. // Array with avatar URL prefixes that need to use CORS.
  667. // corsAvatarURLs: [ 'https://www.gravatar.com/avatar/' ],
  668. // Base URL for a Gravatar-compatible service. Defaults to Gravatar.
  669. // DEPRECATED! Use `gravatar.baseUrl` instead.
  670. // gravatarBaseURL: 'https://www.gravatar.com/avatar/',
  671. // Setup for Gravatar-compatible services.
  672. // gravatar: {
  673. // // Defaults to Gravatar.
  674. // baseUrl: 'https://www.gravatar.com/avatar/',
  675. // // True if Gravatar should be disabled.
  676. // disabled: false,
  677. // },
  678. // App name to be displayed in the invitation email subject, as an alternative to
  679. // interfaceConfig.APP_NAME.
  680. // inviteAppName: null,
  681. // Moved from interfaceConfig(TOOLBAR_BUTTONS).
  682. // The name of the toolbar buttons to display in the toolbar, including the
  683. // "More actions" menu. If present, the button will display. Exceptions are
  684. // "livestreaming" and "recording" which also require being a moderator and
  685. // some other values in config.js to be enabled. Also, the "profile" button will
  686. // not display for users with a JWT.
  687. // Notes:
  688. // - it's possible to reorder the buttons in the maintoolbar by changing the order of the mainToolbarButtons
  689. // - 'desktop' controls the "Share your screen" button
  690. // - if `toolbarButtons` is undefined, we fallback to enabling all buttons on the UI
  691. // toolbarButtons: [
  692. // 'camera',
  693. // 'chat',
  694. // 'closedcaptions',
  695. // 'desktop',
  696. // 'download',
  697. // 'embedmeeting',
  698. // 'etherpad',
  699. // 'feedback',
  700. // 'filmstrip',
  701. // 'fullscreen',
  702. // 'hangup',
  703. // 'help',
  704. // 'highlight',
  705. // 'invite',
  706. // 'linktosalesforce',
  707. // 'livestreaming',
  708. // 'microphone',
  709. // 'noisesuppression',
  710. // 'participants-pane',
  711. // 'profile',
  712. // 'raisehand',
  713. // 'recording',
  714. // 'security',
  715. // 'select-background',
  716. // 'settings',
  717. // 'shareaudio',
  718. // 'sharedvideo',
  719. // 'shortcuts',
  720. // 'stats',
  721. // 'tileview',
  722. // 'toggle-camera',
  723. // 'videoquality',
  724. // 'whiteboard',
  725. // ],
  726. // Holds values related to toolbar visibility control.
  727. // toolbarConfig: {
  728. // // Moved from interfaceConfig.INITIAL_TOOLBAR_TIMEOUT
  729. // // The initial number of milliseconds for the toolbar buttons to be visible on screen.
  730. // initialTimeout: 20000,
  731. // // Moved from interfaceConfig.TOOLBAR_TIMEOUT
  732. // // Number of milliseconds for the toolbar buttons to be visible on screen.
  733. // timeout: 4000,
  734. // // Moved from interfaceConfig.TOOLBAR_ALWAYS_VISIBLE
  735. // // Whether toolbar should be always visible or should hide after x milliseconds.
  736. // alwaysVisible: false,
  737. // // Indicates whether the toolbar should still autohide when chat is open
  738. // autoHideWhileChatIsOpen: false,
  739. // },
  740. // Overrides the buttons displayed in the main toolbar. Depending on the screen size the number of displayed
  741. // buttons varies from 2 buttons to 8 buttons. Every array in the mainToolbarButtons array will replace the
  742. // corresponding default buttons configuration matched by the number of buttons specified in the array. Arrays with
  743. // more than 8 buttons or less then 2 buttons will be ignored. When there there isn't an override for a certain
  744. // configuration (for example when 3 buttons are displayed) the default jitsi-meet configuration will be used.
  745. // The order of the buttons in the array is preserved.
  746. // mainToolbarButtons: [
  747. // [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'reactions', 'participants-pane', 'tileview' ],
  748. // [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'participants-pane', 'tileview' ],
  749. // [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'participants-pane' ],
  750. // [ 'microphone', 'camera', 'desktop', 'chat', 'participants-pane' ],
  751. // [ 'microphone', 'camera', 'chat', 'participants-pane' ],
  752. // [ 'microphone', 'camera', 'chat' ],
  753. // [ 'microphone', 'camera' ]
  754. // ],
  755. // Toolbar buttons which have their click/tap event exposed through the API on
  756. // `toolbarButtonClicked`. Passing a string for the button key will
  757. // prevent execution of the click/tap routine; passing an object with `key` and
  758. // `preventExecution` flag on false will not prevent execution of the click/tap
  759. // routine. Below array with mixed mode for passing the buttons.
  760. // buttonsWithNotifyClick: [
  761. // 'camera',
  762. // {
  763. // key: 'chat',
  764. // preventExecution: false
  765. // },
  766. // {
  767. // key: 'closedcaptions',
  768. // preventExecution: true
  769. // },
  770. // 'desktop',
  771. // 'download',
  772. // 'embedmeeting',
  773. // 'end-meeting',
  774. // 'etherpad',
  775. // 'feedback',
  776. // 'filmstrip',
  777. // 'fullscreen',
  778. // 'hangup',
  779. // 'hangup-menu',
  780. // 'help',
  781. // {
  782. // key: 'invite',
  783. // preventExecution: false
  784. // },
  785. // 'livestreaming',
  786. // 'microphone',
  787. // 'mute-everyone',
  788. // 'mute-video-everyone',
  789. // 'noisesuppression',
  790. // 'participants-pane',
  791. // 'profile',
  792. // {
  793. // key: 'raisehand',
  794. // preventExecution: true
  795. // },
  796. // 'recording',
  797. // 'security',
  798. // 'select-background',
  799. // 'settings',
  800. // 'shareaudio',
  801. // 'sharedvideo',
  802. // 'shortcuts',
  803. // 'stats',
  804. // 'tileview',
  805. // 'toggle-camera',
  806. // 'videoquality',
  807. // // The add passcode button from the security dialog.
  808. // {
  809. // key: 'add-passcode',
  810. // preventExecution: false
  811. // },
  812. // 'whiteboard',
  813. // ],
  814. // Participant context menu buttons which have their click/tap event exposed through the API on
  815. // `participantMenuButtonClick`. Passing a string for the button key will
  816. // prevent execution of the click/tap routine; passing an object with `key` and
  817. // `preventExecution` flag on false will not prevent execution of the click/tap
  818. // routine. Below array with mixed mode for passing the buttons.
  819. // participantMenuButtonsWithNotifyClick: [
  820. // 'allow-video',
  821. // {
  822. // key: 'ask-unmute',
  823. // preventExecution: false
  824. // },
  825. // 'conn-status',
  826. // 'flip-local-video',
  827. // 'grant-moderator',
  828. // {
  829. // key: 'kick',
  830. // preventExecution: true
  831. // },
  832. // {
  833. // key: 'hide-self-view',
  834. // preventExecution: false
  835. // },
  836. // 'mute',
  837. // 'mute-others',
  838. // 'mute-others-video',
  839. // 'mute-video',
  840. // 'pinToStage',
  841. // 'privateMessage',
  842. // {
  843. // key: 'remote-control',
  844. // preventExecution: false
  845. // },
  846. // 'send-participant-to-room',
  847. // 'verify',
  848. // ],
  849. // List of pre meeting screens buttons to hide. The values must be one or more of the 5 allowed buttons:
  850. // 'microphone', 'camera', 'select-background', 'invite', 'settings'
  851. // hiddenPremeetingButtons: [],
  852. // An array with custom option buttons for the participant context menu
  853. // type: Array<{ icon: string; id: string; text: string; }>
  854. // customParticipantMenuButtons: [],
  855. // An array with custom option buttons for the toolbar
  856. // type: Array<{ icon: string; id: string; text: string; backgroundColor?: string; }>
  857. // customToolbarButtons: [],
  858. // Stats
  859. //
  860. // Whether to enable stats collection or not in the TraceablePeerConnection.
  861. // This can be useful for debugging purposes (post-processing/analysis of
  862. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  863. // estimation tests.
  864. // gatherStats: false,
  865. // The interval at which PeerConnection.getStats() is called. Defaults to 10000
  866. // pcStatsInterval: 10000,
  867. // Enables sending participants' display names to stats
  868. // enableDisplayNameInStats: false,
  869. // Enables sending participants' emails (if available) to stats and other analytics
  870. // enableEmailInStats: false,
  871. // faceLandmarks: {
  872. // // Enables sharing your face coordinates. Used for centering faces within a video.
  873. // enableFaceCentering: false,
  874. // // Enables detecting face expressions and sharing data with other participants
  875. // enableFaceExpressionsDetection: false,
  876. // // Enables displaying face expressions in speaker stats
  877. // enableDisplayFaceExpressions: false,
  878. // // Enable rtc stats for face landmarks
  879. // enableRTCStats: false,
  880. // // Minimum required face movement percentage threshold for sending new face centering coordinates data.
  881. // faceCenteringThreshold: 10,
  882. // // Milliseconds for processing a new image capture in order to detect face coordinates if they exist.
  883. // captureInterval: 1000,
  884. // },
  885. // Controls the percentage of automatic feedback shown to participants.
  886. // The default value is 100%. If set to 0, no automatic feedback will be requested
  887. // feedbackPercentage: 100,
  888. // Privacy
  889. //
  890. // If third party requests are disabled, no other server will be contacted.
  891. // This means avatars will be locally generated and external stats integration
  892. // will not function.
  893. // disableThirdPartyRequests: false,
  894. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  895. //
  896. p2p: {
  897. // Enables peer to peer mode. When enabled the system will try to
  898. // establish a direct connection when there are exactly 2 participants
  899. // in the room. If that succeeds the conference will stop sending data
  900. // through the JVB and use the peer to peer connection instead. When a
  901. // 3rd participant joins the conference will be moved back to the JVB
  902. // connection.
  903. enabled: true,
  904. // Sets the ICE transport policy for the p2p connection. At the time
  905. // of this writing the list of possible values are 'all' and 'relay',
  906. // but that is subject to change in the future. The enum is defined in
  907. // the WebRTC standard:
  908. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  909. // If not set, the effective value is 'all'.
  910. // iceTransportPolicy: 'all',
  911. // Provides a way to set the codec preference on mobile devices, both on RN and mobile browser based
  912. // endpoints.
  913. // mobileCodecPreferenceOrder: [ 'H264', 'VP8', 'VP9', 'AV1' ],
  914. //
  915. // Provides a way to set the codec preference on desktop based endpoints.
  916. // codecPreferenceOrder: [ 'AV1', 'VP9', 'VP8', 'H264 ],
  917. // Provides a way to set the codec for screenshare.
  918. // screenshareCodec: 'AV1',
  919. // mobileScreenshareCodec: 'VP8',
  920. // How long we're going to wait, before going back to P2P after the 3rd
  921. // participant has left the conference (to filter out page reload).
  922. // backToP2PDelay: 5,
  923. // The STUN servers that will be used in the peer to peer connections
  924. stunServers: [
  925. // { urls: 'stun:jitsi-meet.example.com:3478' },
  926. { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' },
  927. ],
  928. },
  929. analytics: {
  930. // True if the analytics should be disabled
  931. // disabled: false,
  932. // Matomo configuration:
  933. // matomoEndpoint: 'https://your-matomo-endpoint/',
  934. // matomoSiteID: '42',
  935. // The Amplitude APP Key:
  936. // amplitudeAPPKey: '<APP_KEY>',
  937. // Enables Amplitude UTM tracking:
  938. // Default value is false.
  939. // amplitudeIncludeUTM: false,
  940. // Obfuscates room name sent to analytics (amplitude, rtcstats)
  941. // Default value is false.
  942. // obfuscateRoomName: false,
  943. // Configuration for the rtcstats server:
  944. // By enabling rtcstats server every time a conference is joined the rtcstats
  945. // module connects to the provided rtcstatsEndpoint and sends statistics regarding
  946. // PeerConnection states along with getStats metrics polled at the specified
  947. // interval.
  948. // rtcstatsEnabled: false,
  949. // rtcstatsStoreLogs: false,
  950. // In order to enable rtcstats one needs to provide a endpoint url.
  951. // rtcstatsEndpoint: wss://rtcstats-server-pilot.jitsi.net/,
  952. // The interval at which rtcstats will poll getStats, defaults to 10000ms.
  953. // If the value is set to 0 getStats won't be polled and the rtcstats client
  954. // will only send data related to RTCPeerConnection events.
  955. // rtcstatsPollInterval: 10000,
  956. // This determines if rtcstats sends the SDP to the rtcstats server or replaces
  957. // all SDPs with an empty string instead.
  958. // rtcstatsSendSdp: false,
  959. // Array of script URLs to load as lib-jitsi-meet "analytics handlers".
  960. // scriptURLs: [
  961. // "https://example.com/my-custom-analytics.js",
  962. // ],
  963. // By enabling watchRTCEnabled option you would want to use watchRTC feature
  964. // This would also require to configure watchRTCConfigParams.
  965. // Please remember to keep rtcstatsEnabled disabled for watchRTC to work.
  966. // watchRTCEnabled: false,
  967. },
  968. // Logs that should go be passed through the 'log' event if a handler is defined for it
  969. // apiLogLevels: ['warn', 'log', 'error', 'info', 'debug'],
  970. // Information about the jitsi-meet instance we are connecting to, including
  971. // the user region as seen by the server.
  972. // deploymentInfo: {
  973. // shard: "shard1",
  974. // region: "europe",
  975. // userRegion: "asia",
  976. // },
  977. // Array<string> of disabled sounds.
  978. // Possible values:
  979. // - 'ASKED_TO_UNMUTE_SOUND'
  980. // - 'E2EE_OFF_SOUND'
  981. // - 'E2EE_ON_SOUND'
  982. // - 'INCOMING_MSG_SOUND'
  983. // - 'KNOCKING_PARTICIPANT_SOUND'
  984. // - 'LIVE_STREAMING_OFF_SOUND'
  985. // - 'LIVE_STREAMING_ON_SOUND'
  986. // - 'NO_AUDIO_SIGNAL_SOUND'
  987. // - 'NOISY_AUDIO_INPUT_SOUND'
  988. // - 'OUTGOING_CALL_EXPIRED_SOUND'
  989. // - 'OUTGOING_CALL_REJECTED_SOUND'
  990. // - 'OUTGOING_CALL_RINGING_SOUND'
  991. // - 'OUTGOING_CALL_START_SOUND'
  992. // - 'PARTICIPANT_JOINED_SOUND'
  993. // - 'PARTICIPANT_LEFT_SOUND'
  994. // - 'RAISE_HAND_SOUND'
  995. // - 'REACTION_SOUND'
  996. // - 'RECORDING_OFF_SOUND'
  997. // - 'RECORDING_ON_SOUND'
  998. // - 'TALK_WHILE_MUTED_SOUND'
  999. // disabledSounds: [],
  1000. // DEPRECATED! Use `disabledSounds` instead.
  1001. // Decides whether the start/stop recording audio notifications should play on record.
  1002. // disableRecordAudioNotification: false,
  1003. // DEPRECATED! Use `disabledSounds` instead.
  1004. // Disables the sounds that play when other participants join or leave the
  1005. // conference (if set to true, these sounds will not be played).
  1006. // disableJoinLeaveSounds: false,
  1007. // DEPRECATED! Use `disabledSounds` instead.
  1008. // Disables the sounds that play when a chat message is received.
  1009. // disableIncomingMessageSound: false,
  1010. // Information for the chrome extension banner
  1011. // chromeExtensionBanner: {
  1012. // // The chrome extension to be installed address
  1013. // url: 'https://chrome.google.com/webstore/detail/jitsi-meetings/kglhbbefdnlheedjiejgomgmfplipfeb',
  1014. // edgeUrl: 'https://microsoftedge.microsoft.com/addons/detail/jitsi-meetings/eeecajlpbgjppibfledfihobcabccihn',
  1015. // // Extensions info which allows checking if they are installed or not
  1016. // chromeExtensionsInfo: [
  1017. // {
  1018. // id: 'kglhbbefdnlheedjiejgomgmfplipfeb',
  1019. // path: 'jitsi-logo-48x48.png',
  1020. // },
  1021. // // Edge extension info
  1022. // {
  1023. // id: 'eeecajlpbgjppibfledfihobcabccihn',
  1024. // path: 'jitsi-logo-48x48.png',
  1025. // },
  1026. // ]
  1027. // },
  1028. // e2ee: {
  1029. // labels: {
  1030. // description: '',
  1031. // label: '',
  1032. // tooltip: '',
  1033. // warning: '',
  1034. // },
  1035. // externallyManagedKey: false,
  1036. // disabled: false,
  1037. // },
  1038. // Options related to end-to-end (participant to participant) ping.
  1039. // e2eping: {
  1040. // // Whether ene-to-end pings should be enabled.
  1041. // enabled: false,
  1042. //
  1043. // // The number of responses to wait for.
  1044. // numRequests: 5,
  1045. //
  1046. // // The max conference size in which e2e pings will be sent.
  1047. // maxConferenceSize: 200,
  1048. //
  1049. // // The maximum number of e2e ping messages per second for the whole conference to aim for.
  1050. // // This is used to control the pacing of messages in order to reduce the load on the backend.
  1051. // maxMessagesPerSecond: 250,
  1052. // },
  1053. // If set, will attempt to use the provided video input device label when
  1054. // triggering a screenshare, instead of proceeding through the normal flow
  1055. // for obtaining a desktop stream.
  1056. // NOTE: This option is experimental and is currently intended for internal
  1057. // use only.
  1058. // _desktopSharingSourceDevice: 'sample-id-or-label',
  1059. // DEPRECATED! Use deeplinking.disabled instead.
  1060. // If true, any checks to handoff to another application will be prevented
  1061. // and instead the app will continue to display in the current browser.
  1062. // disableDeepLinking: false,
  1063. // The deeplinking config.
  1064. // deeplinking: {
  1065. //
  1066. // // The desktop deeplinking config, disabled by default.
  1067. // desktop: {
  1068. // appName: 'Jitsi Meet',
  1069. // appScheme: 'jitsi-meet,
  1070. // download: {
  1071. // linux:
  1072. // 'https://github.com/jitsi/jitsi-meet-electron/releases/latest/download/jitsi-meet-x86_64.AppImage',
  1073. // macos: 'https://github.com/jitsi/jitsi-meet-electron/releases/latest/download/jitsi-meet.dmg',
  1074. // windows: 'https://github.com/jitsi/jitsi-meet-electron/releases/latest/download/jitsi-meet.exe'
  1075. // },
  1076. // enabled: false
  1077. // },
  1078. // // If true, any checks to handoff to another application will be prevented
  1079. // // and instead the app will continue to display in the current browser.
  1080. // disabled: false,
  1081. // // whether to hide the logo on the deep linking pages.
  1082. // hideLogo: false,
  1083. // // The ios deeplinking config.
  1084. // ios: {
  1085. // appName: 'Jitsi Meet',
  1086. // // Specify mobile app scheme for opening the app from the mobile browser.
  1087. // appScheme: 'org.jitsi.meet',
  1088. // // Custom URL for downloading ios mobile app.
  1089. // downloadLink: 'https://itunes.apple.com/us/app/jitsi-meet/id1165103905',
  1090. // },
  1091. // // The android deeplinking config.
  1092. // android: {
  1093. // appName: 'Jitsi Meet',
  1094. // // Specify mobile app scheme for opening the app from the mobile browser.
  1095. // appScheme: 'org.jitsi.meet',
  1096. // // Custom URL for downloading android mobile app.
  1097. // downloadLink: 'https://play.google.com/store/apps/details?id=org.jitsi.meet',
  1098. // // Android app package name.
  1099. // appPackage: 'org.jitsi.meet',
  1100. // fDroidUrl: 'https://f-droid.org/en/packages/org.jitsi.meet/',
  1101. // }
  1102. // },
  1103. // // The terms, privacy and help centre URL's.
  1104. // legalUrls: {
  1105. // helpCentre: 'https://web-cdn.jitsi.net/faq/meet-faq.html',
  1106. // privacy: 'https://jitsi.org/meet/privacy',
  1107. // terms: 'https://jitsi.org/meet/terms'
  1108. // },
  1109. // A property to disable the right click context menu for localVideo
  1110. // the menu has option to flip the locally seen video for local presentations
  1111. // disableLocalVideoFlip: false,
  1112. // A property used to unset the default flip state of the local video.
  1113. // When it is set to 'true', the local(self) video will not be mirrored anymore.
  1114. // doNotFlipLocalVideo: false,
  1115. // Mainly privacy related settings
  1116. // Disables all invite functions from the app (share, invite, dial out...etc)
  1117. // disableInviteFunctions: true,
  1118. // Disables storing the room name to the recents list. When in an iframe this is ignored and
  1119. // the room is never stored in the recents list.
  1120. // doNotStoreRoom: true,
  1121. // Deployment specific URLs.
  1122. // deploymentUrls: {
  1123. // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
  1124. // // user documentation.
  1125. // userDocumentationURL: 'https://docs.example.com/video-meetings.html',
  1126. // // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
  1127. // // to the specified URL for an app download page.
  1128. // downloadAppsUrl: 'https://docs.example.com/our-apps.html',
  1129. // },
  1130. // Options related to the remote participant menu.
  1131. // remoteVideoMenu: {
  1132. // // Whether the remote video context menu to be rendered or not.
  1133. // disabled: true,
  1134. // // If set to true the 'Switch to visitor' button will be disabled.
  1135. // disableDemote: true,
  1136. // // If set to true the 'Kick out' button will be disabled.
  1137. // disableKick: true,
  1138. // // If set to true the 'Grant moderator' button will be disabled.
  1139. // disableGrantModerator: true,
  1140. // // If set to true the 'Send private message' button will be disabled.
  1141. // disablePrivateChat: true,
  1142. // },
  1143. // Endpoint that enables support for salesforce integration with in-meeting resource linking
  1144. // This is required for:
  1145. // listing the most recent records - salesforceUrl/records/recents
  1146. // searching records - salesforceUrl/records?text=${text}
  1147. // retrieving record details - salesforceUrl/records/${id}?type=${type}
  1148. // and linking the meeting - salesforceUrl/sessions/${sessionId}/records/${id}
  1149. //
  1150. // salesforceUrl: 'https://api.example.com/',
  1151. // If set to true all muting operations of remote participants will be disabled.
  1152. // disableRemoteMute: true,
  1153. /**
  1154. External API url used to receive branding specific information.
  1155. If there is no url set or there are missing fields, the defaults are applied.
  1156. The config file should be in JSON.
  1157. None of the fields are mandatory and the response must have the shape:
  1158. {
  1159. // Whether participant can only send group chat message if `send-groupchat` feature is enabled in jwt.
  1160. groupChatRequiresPermission: false,
  1161. // Whether participant can only create polls if `create-polls` feature is enabled in jwt.
  1162. pollCreationRequiresPermission: false,
  1163. // The domain url to apply (will replace the domain in the sharing conference link/embed section)
  1164. inviteDomain: 'example-company.org',
  1165. // The hex value for the colour used as background
  1166. backgroundColor: '#fff',
  1167. // The url for the image used as background
  1168. backgroundImageUrl: 'https://example.com/background-img.png',
  1169. // The anchor url used when clicking the logo image
  1170. logoClickUrl: 'https://example-company.org',
  1171. // The url used for the image used as logo
  1172. logoImageUrl: 'https://example.com/logo-img.png',
  1173. // Overwrite for pool of background images for avatars
  1174. avatarBackgrounds: ['url(https://example.com/avatar-background-1.png)', '#FFF'],
  1175. // The lobby/prejoin screen background
  1176. premeetingBackground: 'url(https://example.com/premeeting-background.png)',
  1177. // A list of images that can be used as video backgrounds.
  1178. // When this field is present, the default images will be replaced with those provided.
  1179. virtualBackgrounds: ['https://example.com/img.jpg'],
  1180. // Object containing customized icons that should replace the default ones.
  1181. // The keys need to be the exact same icon names used in here:
  1182. // https://github.com/jitsi/jitsi-meet/blob/master/react/features/base/icons/svg/index.ts
  1183. // To avoid having the icons trimmed or displayed in an unexpected way, please provide svg
  1184. // files containing svg xml icons in the size that the default icons come in.
  1185. customIcons: {
  1186. IconArrowUp: 'https://example.com/arrow-up.svg',
  1187. IconDownload: 'https://example.com/download.svg',
  1188. IconRemoteControlStart: 'https://example.com/remote-start.svg',
  1189. },
  1190. // Object containing a theme's properties. It also supports partial overwrites of the main theme.
  1191. // For a list of all possible theme tokens and their current defaults, please check:
  1192. // https://github.com/jitsi/jitsi-meet/tree/master/resources/custom-theme/custom-theme.json
  1193. // For a short explanations on each of the tokens, please check:
  1194. // https://github.com/jitsi/jitsi-meet/blob/master/react/features/base/ui/Tokens.ts
  1195. // IMPORTANT!: This is work in progress so many of the various tokens are not yet applied in code
  1196. // or they are partially applied.
  1197. customTheme: {
  1198. palette: {
  1199. ui01: "orange !important",
  1200. ui02: "maroon",
  1201. surface02: 'darkgreen',
  1202. ui03: "violet",
  1203. ui04: "magenta",
  1204. ui05: "blueviolet",
  1205. action01: 'green',
  1206. action01Hover: 'lightgreen',
  1207. disabled01: 'beige',
  1208. success02: 'cadetblue',
  1209. action02Hover: 'aliceblue',
  1210. },
  1211. typography: {
  1212. labelRegular: {
  1213. fontSize: 25,
  1214. lineHeight: 30,
  1215. fontWeight: 500,
  1216. }
  1217. }
  1218. }
  1219. }
  1220. */
  1221. // dynamicBrandingUrl: '',
  1222. // A list of allowed URL domains for shared video.
  1223. //
  1224. // NOTE:
  1225. // '*' is allowed value and it will allow any URL to be used for shared video. We do not recommend using '*',
  1226. // use it at your own risk!
  1227. // sharedVideoAllowedURLDomains: [ ],
  1228. // Options related to the participants pane.
  1229. // participantsPane: {
  1230. // // Enables feature
  1231. // enabled: true,
  1232. // // Hides the moderator settings tab.
  1233. // hideModeratorSettingsTab: false,
  1234. // // Hides the more actions button.
  1235. // hideMoreActionsButton: false,
  1236. // // Hides the mute all button.
  1237. // hideMuteAllButton: false,
  1238. // },
  1239. // Options related to the breakout rooms feature.
  1240. // breakoutRooms: {
  1241. // // Hides the add breakout room button. This replaces `hideAddRoomButton`.
  1242. // hideAddRoomButton: false,
  1243. // // Hides the auto assign participants button.
  1244. // hideAutoAssignButton: false,
  1245. // // Hides the join breakout room button.
  1246. // hideJoinRoomButton: false,
  1247. // },
  1248. // When true, virtual background feature will be disabled.
  1249. // disableVirtualBackground: false,
  1250. // When true the user cannot add more images to be used as virtual background.
  1251. // Only the default ones from will be available.
  1252. // disableAddingBackgroundImages: false,
  1253. // Sets the background transparency level. '0' is fully transparent, '1' is opaque.
  1254. // backgroundAlpha: 1,
  1255. // The URL of the moderated rooms microservice, if available. If it
  1256. // is present, a link to the service will be rendered on the welcome page,
  1257. // otherwise the app doesn't render it.
  1258. // moderatedRoomServiceUrl: 'https://moderated.jitsi-meet.example.com',
  1259. // If true, tile view will not be enabled automatically when the participants count threshold is reached.
  1260. // disableTileView: true,
  1261. // If true, the tiles will be displayed contained within the available space rather than enlarged to cover it,
  1262. // with a 16:9 aspect ratio (old behaviour).
  1263. // disableTileEnlargement: true,
  1264. // Controls the visibility and behavior of the top header conference info labels.
  1265. // If a label's id is not in any of the 2 arrays, it will not be visible at all on the header.
  1266. // conferenceInfo: {
  1267. // // those labels will not be hidden in tandem with the toolbox.
  1268. // alwaysVisible: ['recording', 'raised-hands-count'],
  1269. // // those labels will be auto-hidden in tandem with the toolbox buttons.
  1270. // autoHide: [
  1271. // 'subject',
  1272. // 'conference-timer',
  1273. // 'participants-count',
  1274. // 'e2ee',
  1275. // 'video-quality',
  1276. // 'insecure-room',
  1277. // 'highlight-moment',
  1278. // 'top-panel-toggle',
  1279. // ]
  1280. // },
  1281. // Hides the conference subject
  1282. // hideConferenceSubject: false,
  1283. // Hides the conference timer.
  1284. // hideConferenceTimer: false,
  1285. // Hides the recording label
  1286. // hideRecordingLabel: false,
  1287. // Hides the participants stats
  1288. // hideParticipantsStats: true,
  1289. // Sets the conference subject
  1290. // subject: 'Conference Subject',
  1291. // Sets the conference local subject
  1292. // localSubject: 'Conference Local Subject',
  1293. // This property is related to the use case when jitsi-meet is used via the IFrame API. When the property is true
  1294. // jitsi-meet will use the local storage of the host page instead of its own. This option is useful if the browser
  1295. // is not persisting the local storage inside the iframe.
  1296. // useHostPageLocalStorage: true,
  1297. // Etherpad ("shared document") integration.
  1298. //
  1299. // If set, add a "Open shared document" link to the bottom right menu that
  1300. // will open an etherpad document.
  1301. // etherpad_base: 'https://your-etherpad-installati.on/p/',
  1302. // To enable information about dial-in access to meetings you need to provide
  1303. // dialInNumbersUrl and dialInConfCodeUrl.
  1304. // dialInNumbersUrl returns a json array of numbers that can be used for dial-in.
  1305. // {"countryCode":"US","tollFree":false,"formattedNumber":"+1 123-456-7890"}
  1306. // dialInConfCodeUrl is the conference mapper converting a meeting id to a PIN used for dial-in
  1307. // or the other way around (more info in resources/cloud-api.swagger)
  1308. // You can use external service for authentication that will redirect back passing a jwt token
  1309. // You can use tokenAuthUrl config to point to a URL of such service.
  1310. // The URL for the service supports few params which will be filled in by the code.
  1311. // tokenAuthUrl:
  1312. // 'https://myservice.com/auth/{room}?code_challenge_method=S256&code_challenge={code_challenge}&state={state}'
  1313. // Supported parameters in tokenAuthUrl:
  1314. // {room} - will be replaced with the room name
  1315. // {code_challenge} - (A web only). A oauth 2.0 code challenge that will be sent to the service. See:
  1316. // https://datatracker.ietf.org/doc/html/rfc7636. The code verifier will be saved in the sessionStorage
  1317. // under key: 'code_verifier'.
  1318. // {state} - A json with the current state before redirecting. Keys that are included in the state:
  1319. // - room (The current room name as shown in the address bar)
  1320. // - roomSafe (the backend safe room name to use (lowercase), that is passed to the backend)
  1321. // - tenant (The tenant if any)
  1322. // - config.xxx (all config overrides)
  1323. // - interfaceConfig.xxx (all interfaceConfig overrides)
  1324. // - ios=true (in case ios mobile app is used)
  1325. // - android=true (in case android mobile app is used)
  1326. // - electron=true (when web is loaded in electron app)
  1327. // If there is a logout service you can specify its URL with:
  1328. // tokenLogoutUrl: 'https://myservice.com/logout'
  1329. // You can enable tokenAuthUrlAutoRedirect which will detect that you have logged in successfully before
  1330. // and will automatically redirect to the token service to get the token for the meeting.
  1331. // tokenAuthUrlAutoRedirect: false
  1332. // An option to respect the context.tenant jwt field compared to the current tenant from the url
  1333. // tokenRespectTenant: false,
  1334. // You can put an array of values to target different entity types in the invite dialog.
  1335. // Valid values are "phone", "room", "sip", "user", "videosipgw" and "email"
  1336. // peopleSearchQueryTypes: ["user", "email"],
  1337. // Directory endpoint which is called for invite dialog autocomplete
  1338. // peopleSearchUrl: "https://myservice.com/api/people",
  1339. // Endpoint which is called to send invitation requests
  1340. // inviteServiceUrl: "https://myservice.com/api/invite",
  1341. // For external entities (e. g. email), the localStorage key holding the token value for directory authentication
  1342. // peopleSearchTokenLocation: "mytoken",
  1343. // Options related to visitors.
  1344. // visitors: {
  1345. // // Starts audio/video when the participant is promoted from visitor.
  1346. // enableMediaOnPromote: {
  1347. // audio: true,
  1348. // video: true
  1349. // },
  1350. // },
  1351. // The default type of desktop sharing sources that will be used in the electron app.
  1352. // desktopSharingSources: ['screen', 'window'],
  1353. // Disables the echo cancelation for local audio tracks.
  1354. // disableAEC: true,
  1355. // Disables the auto gain control for local audio tracks.
  1356. // disableAGC: true,
  1357. // Disables the audio processing (echo cancelation, auto gain control and noise suppression) for local audio tracks.
  1358. // disableAP: true,
  1359. // Disables the anoise suppression for local audio tracks.
  1360. // disableNS: true,
  1361. // Replaces the display name with the JID of the participants.
  1362. // displayJids: true,
  1363. // Enables disables talk while muted detection.
  1364. // enableTalkWhileMuted: true,
  1365. // Sets the peer connection ICE transport policy to "relay".
  1366. // forceTurnRelay: true,
  1367. // List of undocumented settings used in jitsi-meet
  1368. /**
  1369. _immediateReloadThreshold
  1370. deploymentInfo
  1371. dialOutAuthUrl
  1372. dialOutCodesUrl
  1373. dialOutRegionUrl
  1374. disableRemoteControl
  1375. iAmRecorder
  1376. iAmSipGateway
  1377. microsoftApiApplicationClientID
  1378. */
  1379. /**
  1380. * This property can be used to alter the generated meeting invite links (in combination with a branding domain
  1381. * which is retrieved internally by jitsi meet) (e.g. https://meet.jit.si/someMeeting
  1382. * can become https://brandedDomain/roomAlias)
  1383. */
  1384. // brandingRoomAlias: null,
  1385. // List of undocumented settings used in lib-jitsi-meet
  1386. /**
  1387. _peerConnStatusOutOfLastNTimeout
  1388. _peerConnStatusRtcMuteTimeout
  1389. avgRtpStatsN
  1390. desktopSharingSources
  1391. disableLocalStats
  1392. hiddenDomain
  1393. hiddenFromRecorderFeatureEnabled
  1394. ignoreStartMuted
  1395. websocketKeepAlive
  1396. websocketKeepAliveUrl
  1397. */
  1398. /**
  1399. * Default interval (milliseconds) for triggering mouseMoved iframe API event
  1400. */
  1401. mouseMoveCallbackInterval: 1000,
  1402. /**
  1403. Use this array to configure which notifications will be shown to the user
  1404. The items correspond to the title or description key of that notification
  1405. Some of these notifications also depend on some other internal logic to be displayed or not,
  1406. so adding them here will not ensure they will always be displayed
  1407. A falsy value for this prop will result in having all notifications enabled (e.g null, undefined, false)
  1408. */
  1409. // notifications: [
  1410. // 'connection.CONNFAIL', // shown when the connection fails,
  1411. // 'dialog.cameraConstraintFailedError', // shown when the camera failed
  1412. // 'dialog.cameraNotSendingData', // shown when there's no feed from user's camera
  1413. // 'dialog.kickTitle', // shown when user has been kicked
  1414. // 'dialog.liveStreaming', // livestreaming notifications (pending, on, off, limits)
  1415. // 'dialog.lockTitle', // shown when setting conference password fails
  1416. // 'dialog.maxUsersLimitReached', // shown when maximmum users limit has been reached
  1417. // 'dialog.micNotSendingData', // shown when user's mic is not sending any audio
  1418. // 'dialog.passwordNotSupportedTitle', // shown when setting conference password fails due to password format
  1419. // 'dialog.recording', // recording notifications (pending, on, off, limits)
  1420. // 'dialog.remoteControlTitle', // remote control notifications (allowed, denied, start, stop, error)
  1421. // 'dialog.reservationError',
  1422. // 'dialog.screenSharingFailedTitle', // shown when the screen sharing failed
  1423. // 'dialog.serviceUnavailable', // shown when server is not reachable
  1424. // 'dialog.sessTerminated', // shown when there is a failed conference session
  1425. // 'dialog.sessionRestarted', // show when a client reload is initiated because of bridge migration
  1426. // 'dialog.tokenAuthFailed', // show when an invalid jwt is used
  1427. // 'dialog.tokenAuthFailedWithReasons', // show when an invalid jwt is used with the reason behind the error
  1428. // 'dialog.transcribing', // transcribing notifications (pending, off)
  1429. // 'dialOut.statusMessage', // shown when dial out status is updated.
  1430. // 'liveStreaming.busy', // shown when livestreaming service is busy
  1431. // 'liveStreaming.failedToStart', // shown when livestreaming fails to start
  1432. // 'liveStreaming.unavailableTitle', // shown when livestreaming service is not reachable
  1433. // 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected
  1434. // 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied
  1435. // 'notify.audioUnmuteBlockedTitle', // shown when mic unmute blocked
  1436. // 'notify.chatMessages', // shown when receiving chat messages while the chat window is closed
  1437. // 'notify.connectedOneMember', // show when a participant joined
  1438. // 'notify.connectedThreePlusMembers', // show when more than 2 participants joined simultaneously
  1439. // 'notify.connectedTwoMembers', // show when two participants joined simultaneously
  1440. // 'notify.dataChannelClosed', // shown when the bridge channel has been disconnected
  1441. // 'notify.hostAskedUnmute', // shown to participant when host asks them to unmute
  1442. // 'notify.invitedOneMember', // shown when 1 participant has been invited
  1443. // 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited
  1444. // 'notify.invitedTwoMembers', // shown when 2 participants have been invited
  1445. // 'notify.kickParticipant', // shown when a participant is kicked
  1446. // 'notify.leftOneMember', // show when a participant left
  1447. // 'notify.leftThreePlusMembers', // show when more than 2 participants left simultaneously
  1448. // 'notify.leftTwoMembers', // show when two participants left simultaneously
  1449. // 'notify.linkToSalesforce', // shown when joining a meeting with salesforce integration
  1450. // 'notify.localRecordingStarted', // shown when the local recording has been started
  1451. // 'notify.localRecordingStopped', // shown when the local recording has been stopped
  1452. // 'notify.moderationInEffectCSTitle', // shown when user attempts to share content during AV moderation
  1453. // 'notify.moderationInEffectTitle', // shown when user attempts to unmute audio during AV moderation
  1454. // 'notify.moderationInEffectVideoTitle', // shown when user attempts to enable video during AV moderation
  1455. // 'notify.moderator', // shown when user gets moderator privilege
  1456. // 'notify.mutedRemotelyTitle', // shown when user is muted by a remote party
  1457. // 'notify.mutedTitle', // shown when user has been muted upon joining,
  1458. // 'notify.newDeviceAudioTitle', // prompts the user to use a newly detected audio device
  1459. // 'notify.newDeviceCameraTitle', // prompts the user to use a newly detected camera
  1460. // 'notify.noiseSuppressionFailedTitle', // shown when failed to start noise suppression
  1461. // 'notify.participantWantsToJoin', // shown when lobby is enabled and participant requests to join meeting
  1462. // 'notify.participantsWantToJoin', // shown when lobby is enabled and participants request to join meeting
  1463. // 'notify.passwordRemovedRemotely', // shown when a password has been removed remotely
  1464. // 'notify.passwordSetRemotely', // shown when a password has been set remotely
  1465. // 'notify.raisedHand', // shown when a participant used raise hand,
  1466. // 'notify.screenShareNoAudio', // shown when the audio could not be shared for the selected screen
  1467. // 'notify.screenSharingAudioOnlyTitle', // shown when the best performance has been affected by screen sharing
  1468. // 'notify.selfViewTitle', // show "You can always un-hide the self-view from settings"
  1469. // 'notify.startSilentTitle', // shown when user joined with no audio
  1470. // 'notify.suboptimalExperienceTitle', // show the browser warning
  1471. // 'notify.unmute', // shown to moderator when user raises hand during AV moderation
  1472. // 'notify.videoMutedRemotelyTitle', // shown when user's video is muted by a remote party,
  1473. // 'notify.videoUnmuteBlockedTitle', // shown when camera unmute and desktop sharing are blocked
  1474. // 'prejoin.errorDialOut',
  1475. // 'prejoin.errorDialOutDisconnected',
  1476. // 'prejoin.errorDialOutFailed',
  1477. // 'prejoin.errorDialOutStatus',
  1478. // 'prejoin.errorStatusCode',
  1479. // 'prejoin.errorValidation',
  1480. // 'recording.busy', // shown when recording service is busy
  1481. // 'recording.failedToStart', // shown when recording fails to start
  1482. // 'recording.unavailableTitle', // shown when recording service is not reachable
  1483. // 'toolbar.noAudioSignalTitle', // shown when a broken mic is detected
  1484. // 'toolbar.noisyAudioInputTitle', // shown when noise is detected for the current microphone
  1485. // 'toolbar.talkWhileMutedPopup', // shown when user tries to speak while muted
  1486. // 'transcribing.failed', // shown when transcribing fails
  1487. // ],
  1488. // List of notifications to be disabled. Works in tandem with the above setting.
  1489. // disabledNotifications: [],
  1490. // Prevent the filmstrip from autohiding when screen width is under a certain threshold
  1491. // disableFilmstripAutohiding: false,
  1492. // filmstrip: {
  1493. // // Disable the vertical/horizontal filmstrip.
  1494. // disabled: false,
  1495. // // Disables user resizable filmstrip. Also, allows configuration of the filmstrip
  1496. // // (width, tiles aspect ratios) through the interfaceConfig options.
  1497. // disableResizable: false,
  1498. // // Disables the stage filmstrip
  1499. // // (displaying multiple participants on stage besides the vertical filmstrip)
  1500. // disableStageFilmstrip: false,
  1501. // // Default number of participants that can be displayed on stage.
  1502. // // The user can change this in settings. Number must be between 1 and 6.
  1503. // stageFilmstripParticipants: 1,
  1504. // // Disables the top panel (only shown when a user is sharing their screen).
  1505. // disableTopPanel: false,
  1506. // // The minimum number of participants that must be in the call for
  1507. // // the top panel layout to be used.
  1508. // minParticipantCountForTopPanel: 50,
  1509. // },
  1510. // Tile view related config options.
  1511. // tileView: {
  1512. // // Whether tileview should be disabled.
  1513. // disabled: false,
  1514. // // The optimal number of tiles that are going to be shown in tile view. Depending on the screen size it may
  1515. // // not be possible to show the exact number of participants specified here.
  1516. // numberOfVisibleTiles: 25,
  1517. // },
  1518. // Specifies whether the chat emoticons are disabled or not
  1519. // disableChatSmileys: false,
  1520. // Settings for the GIPHY integration.
  1521. // giphy: {
  1522. // // Whether the feature is enabled or not.
  1523. // enabled: false,
  1524. // // SDK API Key from Giphy.
  1525. // sdkKey: '',
  1526. // // Display mode can be one of:
  1527. // // - tile: show the GIF on the tile of the participant that sent it.
  1528. // // - chat: show the GIF as a message in chat
  1529. // // - all: all of the above. This is the default option
  1530. // displayMode: 'all',
  1531. // // How long the GIF should be displayed on the tile (in milliseconds).
  1532. // tileTime: 5000,
  1533. // // Limit results by rating: g, pg, pg-13, r. Default value: g.
  1534. // rating: 'pg',
  1535. // },
  1536. // Logging
  1537. // logging: {
  1538. // // Default log level for the app and lib-jitsi-meet.
  1539. // defaultLogLevel: 'trace',
  1540. // // Option to disable LogCollector.
  1541. // //disableLogCollector: true,
  1542. // // Individual loggers are customizable.
  1543. // loggers: {
  1544. // // The following are too verbose in their logging with the default level.
  1545. // 'modules/RTC/TraceablePeerConnection.js': 'info',
  1546. // 'modules/xmpp/strophe.util.js': 'log',
  1547. // },
  1548. // },
  1549. // Application logo url
  1550. // defaultLogoUrl: 'images/watermark.svg',
  1551. // Settings for the Excalidraw whiteboard integration.
  1552. // whiteboard: {
  1553. // // Whether the feature is enabled or not.
  1554. // enabled: true,
  1555. // // The server used to support whiteboard collaboration.
  1556. // // https://github.com/jitsi/excalidraw-backend
  1557. // collabServerBaseUrl: 'https://excalidraw-backend.example.com',
  1558. // // The user access limit to the whiteboard, introduced as a means
  1559. // // to control the performance.
  1560. // userLimit: 25,
  1561. // // The url for more info about the whiteboard and its usage limitations.
  1562. // limitUrl: 'https://example.com/blog/whiteboard-limits',
  1563. // },
  1564. // The watchRTC initialize config params as described :
  1565. // https://testrtc.com/docs/installing-the-watchrtc-javascript-sdk/#h-set-up-the-sdk
  1566. // https://www.npmjs.com/package/@testrtc/watchrtc-sdk
  1567. // watchRTCConfigParams: {
  1568. // /** Watchrtc api key */
  1569. // rtcApiKey: string;
  1570. // /** Identifier for the session */
  1571. // rtcRoomId?: string;
  1572. // /** Identifier for the current peer */
  1573. // rtcPeerId?: string;
  1574. // /**
  1575. // * ["tag1", "tag2", "tag3"]
  1576. // * @deprecated use 'keys' instead
  1577. // */
  1578. // rtcTags?: string[];
  1579. // /** { "key1": "value1", "key2": "value2"} */
  1580. // keys?: any;
  1581. // /** Enables additional logging */
  1582. // debug?: boolean;
  1583. // rtcToken?: string;
  1584. // /**
  1585. // * @deprecated No longer needed. Use "proxyUrl" instead.
  1586. // */
  1587. // wsUrl?: string;
  1588. // proxyUrl?: string;
  1589. // console?: {
  1590. // level: string;
  1591. // override: boolean;
  1592. // };
  1593. // allowBrowserLogCollection?: boolean;
  1594. // collectionInterval?: number;
  1595. // logGetStats?: boolean;
  1596. // },
  1597. // Hide login button on auth dialog, you may want to enable this if you are using JWT tokens to authenticate users
  1598. // hideLoginButton: true,
  1599. // If true remove the tint foreground on focused user camera in filmstrip
  1600. // disableCameraTintForeground: false,
  1601. // File sharign service.
  1602. // fileSharing: {
  1603. // // The URL of the file sharing service API. See resources/file-sharing.yaml for more details.
  1604. // apiUrl: 'https://example.com',
  1605. // // Whether the file sharing service is enabled or not.
  1606. // enabled: true,
  1607. // // Maximum file size limit (-1 value disables any file size limit check)
  1608. // maxFileSize: 50,
  1609. // },
  1610. };
  1611. // Set the default values for JaaS customers
  1612. if (enableJaaS) {
  1613. config.dialInNumbersUrl = 'https://conference-mapper.jitsi.net/v1/access/dids';
  1614. config.dialInConfCodeUrl = 'https://conference-mapper.jitsi.net/v1/access';
  1615. config.roomPasswordNumberOfDigits = 10; // skip re-adding it (do not remove comment)
  1616. }