您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

config.js 75KB

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