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

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