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

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