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

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