Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500
  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: '//jitsi-meet.example.com/' + subdir + 'http-bind',
  38. // Websocket URL
  39. // websocket: 'wss://jitsi-meet.example.com/' + subdir + 'xmpp-websocket',
  40. // The real JID of focus participant - can be overridden here
  41. // Do not change username - FIXME: Make focus username configurable
  42. // https://github.com/jitsi/jitsi-meet/issues/7376
  43. // focusUserJid: 'focus@auth.jitsi-meet.example.com',
  44. // Testing / experimental features.
  45. //
  46. testing: {
  47. // Disables the End to End Encryption feature. Useful for debugging
  48. // issues related to insertable streams.
  49. // disableE2EE: false,
  50. // Enables/disables thumbnail reordering in the filmstrip. It is enabled by default unless explicitly
  51. // disabled by the below option.
  52. // enableThumbnailReordering: true,
  53. // Enables XMPP WebSocket (as opposed to BOSH) for the given amount of users.
  54. // mobileXmppWsThreshold: 10, // enable XMPP WebSockets on mobile for 10% of the users
  55. // P2P test mode disables automatic switching to P2P when there are 2
  56. // participants in the conference.
  57. // p2pTestMode: false,
  58. // Enables the test specific features consumed by jitsi-meet-torture
  59. // testMode: false,
  60. // Disables the auto-play behavior of *all* newly created video element.
  61. // This is useful when the client runs on a host with limited resources.
  62. // noAutoPlayVideo: false,
  63. // Enable / disable 500 Kbps bitrate cap on desktop tracks. When enabled,
  64. // simulcast is turned off for the desktop share. If presenter is turned
  65. // on while screensharing is in progress, the max bitrate is automatically
  66. // adjusted to 2.5 Mbps. This takes a value between 0 and 1 which determines
  67. // the probability for this to be enabled. This setting has been deprecated.
  68. // desktopSharingFrameRate.max now determines whether simulcast will be enabled
  69. // or disabled for the screenshare.
  70. // capScreenshareBitrate: 1, // 0 to disable - deprecated.
  71. // Whether to use fake constraints (height: 99999, width: 99999) when calling getDisplayMedia on
  72. // Chromium based browsers. This is intended as a workaround for
  73. // https://bugs.chromium.org/p/chromium/issues/detail?id=1056311
  74. // setScreenSharingResolutionConstraints: true,
  75. // Enable callstats only for a percentage of users.
  76. // This takes a value between 0 and 100 which determines the probability for
  77. // the callstats to be enabled.
  78. // callStatsThreshold: 5, // enable callstats for 5% of the users.
  79. },
  80. // Feature Flags.
  81. flags: {
  82. // Enables source names in the signaling.
  83. // sourceNameSignaling: false,
  84. // Enables sending multiple video streams, i.e., camera and desktop tracks can be shared in the conference
  85. // separately as two different streams instead of one composite stream.
  86. // sendMultipleVideoStreams: false,
  87. // Signal that this client supports receiving multiple video streams. Without this flag jicofo will enable
  88. // multi-stream backward compatibility.
  89. receiveMultipleVideoStreams: true,
  90. },
  91. // Disables moderator indicators.
  92. // disableModeratorIndicator: false,
  93. // Disables the reactions feature.
  94. // disableReactions: true,
  95. // Disables the reactions moderation feature.
  96. // disableReactionsModeration: false,
  97. // Disables polls feature.
  98. // disablePolls: false,
  99. // Disables self-view tile. (hides it from tile view and from filmstrip)
  100. // disableSelfView: false,
  101. // Disables self-view settings in UI
  102. // disableSelfViewSettings: false,
  103. // screenshotCapture : {
  104. // Enables the screensharing capture feature.
  105. // enabled: false,
  106. //
  107. // The mode for the screenshot capture feature.
  108. // Can be either 'recording' - screensharing screenshots are taken
  109. // only when the recording is also on,
  110. // or 'always' - screensharing screenshots are always taken.
  111. // mode: 'recording',
  112. // }
  113. // Disables ICE/UDP by filtering out local and remote UDP candidates in
  114. // signalling.
  115. // webrtcIceUdpDisable: false,
  116. // Disables ICE/TCP by filtering out local and remote TCP candidates in
  117. // signalling.
  118. // webrtcIceTcpDisable: false,
  119. // Media
  120. //
  121. // Enable unified plan implementation support on Chromium based browsers.
  122. // enableUnifiedOnChrome: false,
  123. // Audio
  124. // Disable measuring of audio levels.
  125. // disableAudioLevels: false,
  126. // audioLevelsInterval: 200,
  127. // Enabling this will run the lib-jitsi-meet no audio detection module which
  128. // will notify the user if the current selected microphone has no audio
  129. // input and will suggest another valid device if one is present.
  130. enableNoAudioDetection: true,
  131. // Enabling this will show a "Save Logs" link in the GSM popover that can be
  132. // used to collect debug information (XMPP IQs, SDP offer/answer cycles)
  133. // about the call.
  134. // enableSaveLogs: false,
  135. // Enabling this will hide the "Show More" link in the GSM popover that can be
  136. // used to display more statistics about the connection (IP, Port, protocol, etc).
  137. // disableShowMoreStats: true,
  138. // Enabling this will run the lib-jitsi-meet noise detection module which will
  139. // notify the user if there is noise, other than voice, coming from the current
  140. // selected microphone. The purpose it to let the user know that the input could
  141. // be potentially unpleasant for other meeting participants.
  142. enableNoisyMicDetection: true,
  143. // Start the conference in audio only mode (no video is being received nor
  144. // sent).
  145. // startAudioOnly: false,
  146. // Every participant after the Nth will start audio muted.
  147. // startAudioMuted: 10,
  148. // Start calls with audio muted. Unlike the option above, this one is only
  149. // applied locally. FIXME: having these 2 options is confusing.
  150. // startWithAudioMuted: false,
  151. // Enabling it (with #params) will disable local audio output of remote
  152. // participants and to enable it back a reload is needed.
  153. // startSilent: false,
  154. // Enables support for opus-red (redundancy for Opus).
  155. // enableOpusRed: false,
  156. // Specify audio quality stereo and opusMaxAverageBitrate values in order to enable HD audio.
  157. // Beware, by doing so, you are disabling echo cancellation, noise suppression and AGC.
  158. // audioQuality: {
  159. // stereo: false,
  160. // opusMaxAverageBitrate: null, // Value to fit the 6000 to 510000 range.
  161. // },
  162. // Video
  163. // Sets the preferred resolution (height) for local video. Defaults to 720.
  164. // resolution: 720,
  165. // Specifies whether the raised hand will hide when someone becomes a dominant speaker or not
  166. // disableRemoveRaisedHandOnFocus: false,
  167. // Specifies whether there will be a search field in speaker stats or not
  168. // disableSpeakerStatsSearch: false,
  169. // Specifies whether participants in speaker stats should be ordered or not, and with what priority
  170. // speakerStatsOrder: [
  171. // 'role', <- Moderators on top
  172. // 'name', <- Alphabetically by name
  173. // 'hasLeft', <- The ones that have left in the bottom
  174. // ], <- the order of the array elements determines priority
  175. // How many participants while in the tile view mode, before the receiving video quality is reduced from HD to SD.
  176. // Use -1 to disable.
  177. // maxFullResolutionParticipants: 2,
  178. // w3c spec-compliant video constraints to use for video capture. Currently
  179. // used by browsers that return true from lib-jitsi-meet's
  180. // util#browser#usesNewGumFlow. The constraints are independent from
  181. // this config's resolution value. Defaults to requesting an ideal
  182. // resolution of 720p.
  183. // constraints: {
  184. // video: {
  185. // height: {
  186. // ideal: 720,
  187. // max: 720,
  188. // min: 240,
  189. // },
  190. // },
  191. // },
  192. // Enable / disable simulcast support.
  193. // disableSimulcast: false,
  194. // Enable / disable layer suspension. If enabled, endpoints whose HD layers are not in use will be suspended
  195. // (no longer sent) until they are requested again. This is enabled by default. This must be enabled for screen
  196. // sharing to work as expected on Chrome. Disabling this might result in low resolution screenshare being sent
  197. // by the client.
  198. // enableLayerSuspension: false,
  199. // Every participant after the Nth will start video muted.
  200. // startVideoMuted: 10,
  201. // Start calls with video muted. Unlike the option above, this one is only
  202. // applied locally. FIXME: having these 2 options is confusing.
  203. // startWithVideoMuted: false,
  204. // If set to true, prefer to use the H.264 video codec (if supported).
  205. // Note that it's not recommended to do this because simulcast is not
  206. // supported when using H.264. For 1-to-1 calls this setting is enabled by
  207. // default and can be toggled in the p2p section.
  208. // This option has been deprecated, use preferredCodec under videoQuality section instead.
  209. // preferH264: true,
  210. // If set to true, disable H.264 video codec by stripping it out of the
  211. // SDP.
  212. // disableH264: false,
  213. // Desktop sharing
  214. // Optional desktop sharing frame rate options. Default value: min:5, max:5.
  215. // desktopSharingFrameRate: {
  216. // min: 5,
  217. // max: 5,
  218. // },
  219. // This option has been deprecated since it is no longer supported as per the w3c spec.
  220. // https://w3c.github.io/mediacapture-screen-share/#dom-mediadevices-getdisplaymedia. If the user has not
  221. // interacted with the webpage before the getDisplayMedia call, the promise will be rejected by the browser. This
  222. // has already been implemented in Firefox and Safari and will be implemented in Chrome soon.
  223. // https://bugs.chromium.org/p/chromium/issues/detail?id=1198918
  224. // startScreenSharing: false,
  225. // Recording
  226. // DEPRECATED. Use recordingService.enabled instead.
  227. // fileRecordingsEnabled: false,
  228. // Enable the dropbox integration.
  229. // dropbox: {
  230. // appKey: '<APP_KEY>', // Specify your app key here.
  231. // // A URL to redirect the user to, after authenticating
  232. // // by default uses:
  233. // // 'https://jitsi-meet.example.com/static/oauth.html'
  234. // redirectURI:
  235. // 'https://jitsi-meet.example.com/subfolder/static/oauth.html',
  236. // },
  237. // recordingService: {
  238. // // When integrations like dropbox are enabled only that will be shown,
  239. // // by enabling fileRecordingsServiceEnabled, we show both the integrations
  240. // // and the generic recording service (its configuration and storage type
  241. // // depends on jibri configuration)
  242. // enabled: false,
  243. // // Whether to show the possibility to share file recording with other people
  244. // // (e.g. meeting participants), based on the actual implementation
  245. // // on the backend.
  246. // sharingEnabled: false,
  247. // // Hide the warning that says we only store the recording for 24 hours.
  248. // hideStorageWarning: false,
  249. // },
  250. // DEPRECATED. Use recordingService.enabled instead.
  251. // fileRecordingsServiceEnabled: false,
  252. // DEPRECATED. Use recordingService.sharingEnabled instead.
  253. // fileRecordingsServiceSharingEnabled: false,
  254. // Local recording configuration.
  255. // localRecording: {
  256. // // Whether to disable local recording or not.
  257. // disable: false,
  258. // // Whether to notify all participants when a participant is recording locally.
  259. // notifyAllParticipants: false,
  260. // // Whether to disable the self recording feature (only local participant streams).
  261. // disableSelfRecording: false,
  262. // },
  263. // Customize the Live Streaming dialog. Can be modified for a non-YouTube provider.
  264. // liveStreaming: {
  265. // // Whether to enable live streaming or not.
  266. // enabled: false,
  267. // // Terms link
  268. // termsLink: 'https://www.youtube.com/t/terms',
  269. // // Data privacy link
  270. // dataPrivacyLink: 'https://policies.google.com/privacy',
  271. // // RegExp string that validates the stream key input field
  272. // validatorRegExpString: '^(?:[a-zA-Z0-9]{4}(?:-(?!$)|$)){4}',
  273. // // Documentation reference for the live streaming feature.
  274. // helpLink: 'https://jitsi.org/live'
  275. // },
  276. // DEPRECATED. Use liveStreaming.enabled instead.
  277. // liveStreamingEnabled: false,
  278. // DEPRECATED. Use transcription.enabled instead.
  279. // transcribingEnabled: false,
  280. // DEPRECATED. Use transcription.useAppLanguage instead.
  281. // transcribeWithAppLanguage: true,
  282. // DEPRECATED. Use transcription.preferredLanguage instead.
  283. // preferredTranscribeLanguage: 'en-US',
  284. // DEPRECATED. Use transcription.autoCaptionOnRecord instead.
  285. // autoCaptionOnRecord: false,
  286. // Transcription options.
  287. // transcription: {
  288. // // Whether the feature should be enabled or not.
  289. // enabled: false,
  290. // // If true transcriber will use the application language.
  291. // // The application language is either explicitly set by participants in their settings or automatically
  292. // // detected based on the environment, e.g. if the app is opened in a chrome instance which
  293. // // is using french as its default language then transcriptions for that participant will be in french.
  294. // // Defaults to true.
  295. // useAppLanguage: true,
  296. // // Transcriber language. This settings will only work if "useAppLanguage"
  297. // // is explicitly set to false.
  298. // // Available languages can be found in
  299. // // ./src/react/features/transcribing/transcriber-langs.json.
  300. // preferredLanguage: 'en-US',
  301. // // Disable start transcription for all participants.
  302. // disableStartForAll: false,
  303. // // Enables automatic turning on captions when recording is started
  304. // autoCaptionOnRecord: false,
  305. // },
  306. // Misc
  307. // Default value for the channel "last N" attribute. -1 for unlimited.
  308. channelLastN: -1,
  309. // Connection indicators
  310. // connectionIndicators: {
  311. // autoHide: true,
  312. // autoHideTimeout: 5000,
  313. // disabled: false,
  314. // disableDetails: false,
  315. // inactiveDisabled: false
  316. // },
  317. // Provides a way for the lastN value to be controlled through the UI.
  318. // When startLastN is present, conference starts with a last-n value of startLastN and channelLastN
  319. // value will be used when the quality level is selected using "Manage Video Quality" slider.
  320. // startLastN: 1,
  321. // Provides a way to use different "last N" values based on the number of participants in the conference.
  322. // The keys in an Object represent number of participants and the values are "last N" to be used when number of
  323. // participants gets to or above the number.
  324. //
  325. // For the given example mapping, "last N" will be set to 20 as long as there are at least 5, but less than
  326. // 29 participants in the call and it will be lowered to 15 when the 30th participant joins. The 'channelLastN'
  327. // will be used as default until the first threshold is reached.
  328. //
  329. // lastNLimits: {
  330. // 5: 20,
  331. // 30: 15,
  332. // 50: 10,
  333. // 70: 5,
  334. // 90: 2,
  335. // },
  336. // Provides a way to translate the legacy bridge signaling messages, 'LastNChangedEvent',
  337. // 'SelectedEndpointsChangedEvent' and 'ReceiverVideoConstraint' into the new 'ReceiverVideoConstraints' message
  338. // that invokes the new bandwidth allocation algorithm in the bridge which is described here
  339. // - https://github.com/jitsi/jitsi-videobridge/blob/master/doc/allocation.md.
  340. // useNewBandwidthAllocationStrategy: false,
  341. // Specify the settings for video quality optimizations on the client.
  342. // videoQuality: {
  343. // // Provides a way to prevent a video codec from being negotiated on the JVB connection. The codec specified
  344. // // here will be removed from the list of codecs present in the SDP answer generated by the client. If the
  345. // // same codec is specified for both the disabled and preferred option, the disable settings will prevail.
  346. // // Note that 'VP8' cannot be disabled since it's a mandatory codec, the setting will be ignored in this case.
  347. // disabledCodec: 'H264',
  348. //
  349. // // Provides a way to set a preferred video codec for the JVB connection. If 'H264' is specified here,
  350. // // simulcast will be automatically disabled since JVB doesn't support H264 simulcast yet. This will only
  351. // // rearrange the the preference order of the codecs in the SDP answer generated by the browser only if the
  352. // // preferred codec specified here is present. Please ensure that the JVB offers the specified codec for this
  353. // // to take effect.
  354. // preferredCodec: 'VP8',
  355. //
  356. // // Provides a way to enforce the preferred codec for the conference even when the conference has endpoints
  357. // // that do not support the preferred codec. For example, older versions of Safari do not support VP9 yet.
  358. // // This will result in Safari not being able to decode video from endpoints sending VP9 video.
  359. // // When set to false, the conference falls back to VP8 whenever there is an endpoint that doesn't support the
  360. // // preferred codec and goes back to the preferred codec when that endpoint leaves.
  361. // enforcePreferredCodec: false,
  362. //
  363. // // Provides a way to configure the maximum bitrates that will be enforced on the simulcast streams for
  364. // // video tracks. The keys in the object represent the type of the stream (LD, SD or HD) and the values
  365. // // are the max.bitrates to be set on that particular type of stream. The actual send may vary based on
  366. // // the available bandwidth calculated by the browser, but it will be capped by the values specified here.
  367. // // This is currently not implemented on app based clients on mobile.
  368. // maxBitratesVideo: {
  369. // H264: {
  370. // low: 200000,
  371. // standard: 500000,
  372. // high: 1500000,
  373. // },
  374. // VP8 : {
  375. // low: 200000,
  376. // standard: 500000,
  377. // high: 1500000,
  378. // },
  379. // VP9: {
  380. // low: 100000,
  381. // standard: 300000,
  382. // high: 1200000,
  383. // },
  384. // },
  385. //
  386. // // The options can be used to override default thresholds of video thumbnail heights corresponding to
  387. // // the video quality levels used in the application. At the time of this writing the allowed levels are:
  388. // // 'low' - for the low quality level (180p at the time of this writing)
  389. // // 'standard' - for the medium quality level (360p)
  390. // // 'high' - for the high quality level (720p)
  391. // // The keys should be positive numbers which represent the minimal thumbnail height for the quality level.
  392. // //
  393. // // With the default config value below the application will use 'low' quality until the thumbnails are
  394. // // at least 360 pixels tall. If the thumbnail height reaches 720 pixels then the application will switch to
  395. // // the high quality.
  396. // minHeightForQualityLvl: {
  397. // 360: 'standard',
  398. // 720: 'high',
  399. // },
  400. //
  401. // // Provides a way to resize the desktop track to 720p (if it is greater than 720p) before creating a canvas
  402. // // for the presenter mode (camera picture-in-picture mode with screenshare).
  403. // resizeDesktopForPresenter: false,
  404. // },
  405. // Notification timeouts
  406. // notificationTimeouts: {
  407. // short: 2500,
  408. // medium: 5000,
  409. // long: 10000,
  410. // },
  411. // // Options for the recording limit notification.
  412. // recordingLimit: {
  413. //
  414. // // The recording limit in minutes. Note: This number appears in the notification text
  415. // // but doesn't enforce the actual recording time limit. This should be configured in
  416. // // jibri!
  417. // limit: 60,
  418. //
  419. // // The name of the app with unlimited recordings.
  420. // appName: 'Unlimited recordings APP',
  421. //
  422. // // The URL of the app with unlimited recordings.
  423. // appURL: 'https://unlimited.recordings.app.com/',
  424. // },
  425. // Disables or enables RTX (RFC 4588) (defaults to false).
  426. // disableRtx: false,
  427. // Moves all Jitsi Meet 'beforeunload' logic (cleanup, leaving, disconnecting, etc) to the 'unload' event.
  428. // disableBeforeUnloadHandlers: true,
  429. // Disables or enables TCC support in this client (default: enabled).
  430. // enableTcc: true,
  431. // Disables or enables REMB support in this client (default: enabled).
  432. // enableRemb: true,
  433. // Enables ICE restart logic in LJM and displays the page reload overlay on
  434. // ICE failure. Current disabled by default because it's causing issues with
  435. // signaling when Octo is enabled. Also when we do an "ICE restart"(which is
  436. // not a real ICE restart), the client maintains the TCC sequence number
  437. // counter, but the bridge resets it. The bridge sends media packets with
  438. // TCC sequence numbers starting from 0.
  439. // enableIceRestart: false,
  440. // Enables forced reload of the client when the call is migrated as a result of
  441. // the bridge going down.
  442. // enableForcedReload: true,
  443. // Use TURN/UDP servers for the jitsi-videobridge connection (by default
  444. // we filter out TURN/UDP because it is usually not needed since the
  445. // bridge itself is reachable via UDP)
  446. // useTurnUdp: false
  447. // Enable support for encoded transform in supported browsers. This allows
  448. // E2EE to work in Safari if the corresponding flag is enabled in the browser.
  449. // Experimental.
  450. // enableEncodedTransformSupport: false,
  451. // UI
  452. //
  453. // Disables responsive tiles.
  454. // disableResponsiveTiles: false,
  455. // Hides lobby button
  456. // hideLobbyButton: false,
  457. // If Lobby is enabled starts knocking automatically.
  458. // autoKnockLobby: false,
  459. // Enable lobby chat.
  460. // enableLobbyChat: true,
  461. // DEPRECATED! Use `breakoutRooms.hideAddRoomButton` instead.
  462. // Hides add breakout room button
  463. // hideAddRoomButton: false,
  464. // Require users to always specify a display name.
  465. // requireDisplayName: true,
  466. // Whether to use a welcome page or not. In case it's false a random room
  467. // will be joined when no room is specified.
  468. enableWelcomePage: true,
  469. // Disable app shortcuts that are registered upon joining a conference
  470. // disableShortcuts: false,
  471. // Disable initial browser getUserMedia requests.
  472. // This is useful for scenarios where users might want to start a conference for screensharing only
  473. // disableInitialGUM: false,
  474. // Enabling the close page will ignore the welcome page redirection when
  475. // a call is hangup.
  476. // enableClosePage: false,
  477. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  478. // Setting this to null, will also disable showing the remote videos
  479. // when the toolbar is shown on mouse movements
  480. // disable1On1Mode: null | false | true,
  481. // Default local name to be displayed
  482. // defaultLocalDisplayName: 'me',
  483. // Default remote name to be displayed
  484. // defaultRemoteDisplayName: 'Fellow Jitster',
  485. // Hides the display name from the participant thumbnail
  486. // hideDisplayName: false,
  487. // Hides the dominant speaker name badge that hovers above the toolbox
  488. // hideDominantSpeakerBadge: false,
  489. // Default language for the user interface. Cannot be overwritten.
  490. // defaultLanguage: 'en',
  491. // Disables profile and the edit of all fields from the profile settings (display name and email)
  492. // disableProfile: false,
  493. // Hides the email section under profile settings.
  494. // hideEmailInSettings: false,
  495. // When enabled the password used for locking a room is restricted to up to the number of digits specified
  496. // default: roomPasswordNumberOfDigits: false,
  497. // roomPasswordNumberOfDigits: 10,
  498. // Message to show the users. Example: 'The service will be down for
  499. // maintenance at 01:00 AM GMT,
  500. // noticeMessage: '',
  501. // Enables calendar integration, depends on googleApiApplicationClientID
  502. // and microsoftApiApplicationClientID
  503. // enableCalendarIntegration: false,
  504. // Configs for prejoin page.
  505. // prejoinConfig: {
  506. // // When 'true', it shows an intermediate page before joining, where the user can configure their devices.
  507. // // This replaces `prejoinPageEnabled`.
  508. // enabled: true,
  509. // // Hides the participant name editing field in the prejoin screen.
  510. // // If requireDisplayName is also set as true, a name should still be provided through
  511. // // either the jwt or the userInfo from the iframe api init object in order for this to have an effect.
  512. // hideDisplayName: false,
  513. // // List of buttons to hide from the extra join options dropdown.
  514. // hideExtraJoinButtons: ['no-audio', 'by-phone'],
  515. // },
  516. // When 'true', the user cannot edit the display name.
  517. // (Mainly useful when used in conjunction with the JWT so the JWT name becomes read only.)
  518. // readOnlyName: false,
  519. // If etherpad integration is enabled, setting this to true will
  520. // automatically open the etherpad when a participant joins. This
  521. // does not affect the mobile app since opening an etherpad
  522. // obscures the conference controls -- it's better to let users
  523. // choose to open the pad on their own in that case.
  524. // openSharedDocumentOnJoin: false,
  525. // If true, shows the unsafe room name warning label when a room name is
  526. // deemed unsafe (due to the simplicity in the name) and a password is not
  527. // set or the lobby is not enabled.
  528. // enableInsecureRoomNameWarning: false,
  529. // Whether to automatically copy invitation URL after creating a room.
  530. // Document should be focused for this option to work
  531. // enableAutomaticUrlCopy: false,
  532. // Array with avatar URL prefixes that need to use CORS.
  533. // corsAvatarURLs: [ 'https://www.gravatar.com/avatar/' ],
  534. // Base URL for a Gravatar-compatible service. Defaults to Gravatar.
  535. // DEPRECATED! Use `gravatar.baseUrl` instead.
  536. // gravatarBaseURL: 'https://www.gravatar.com/avatar/',
  537. // Setup for Gravatar-compatible services.
  538. // gravatar: {
  539. // // Defaults to Gravatar.
  540. // baseUrl: 'https://www.gravatar.com/avatar/',
  541. // // True if Gravatar should be disabled.
  542. // disabled: false,
  543. // },
  544. // App name to be displayed in the invitation email subject, as an alternative to
  545. // interfaceConfig.APP_NAME.
  546. // inviteAppName: null,
  547. // Moved from interfaceConfig(TOOLBAR_BUTTONS).
  548. // The name of the toolbar buttons to display in the toolbar, including the
  549. // "More actions" menu. If present, the button will display. Exceptions are
  550. // "livestreaming" and "recording" which also require being a moderator and
  551. // some other values in config.js to be enabled. Also, the "profile" button will
  552. // not display for users with a JWT.
  553. // Notes:
  554. // - it's impossible to choose which buttons go in the "More actions" menu
  555. // - it's impossible to control the placement of buttons
  556. // - 'desktop' controls the "Share your screen" button
  557. // - if `toolbarButtons` is undefined, we fallback to enabling all buttons on the UI
  558. // toolbarButtons: [
  559. // 'camera',
  560. // 'chat',
  561. // 'closedcaptions',
  562. // 'desktop',
  563. // 'dock-iframe',
  564. // 'download',
  565. // 'embedmeeting',
  566. // 'etherpad',
  567. // 'feedback',
  568. // 'filmstrip',
  569. // 'fullscreen',
  570. // 'hangup',
  571. // 'help',
  572. // 'highlight',
  573. // 'invite',
  574. // 'linktosalesforce',
  575. // 'livestreaming',
  576. // 'microphone',
  577. // 'noisesuppression',
  578. // 'participants-pane',
  579. // 'profile',
  580. // 'raisehand',
  581. // 'recording',
  582. // 'security',
  583. // 'select-background',
  584. // 'settings',
  585. // 'shareaudio',
  586. // 'sharedvideo',
  587. // 'shortcuts',
  588. // 'stats',
  589. // 'tileview',
  590. // 'toggle-camera',
  591. // 'undock-iframe',
  592. // 'videoquality',
  593. // ],
  594. // Holds values related to toolbar visibility control.
  595. // toolbarConfig: {
  596. // // Moved from interfaceConfig.INITIAL_TOOLBAR_TIMEOUT
  597. // // The initial number of milliseconds for the toolbar buttons to be visible on screen.
  598. // initialTimeout: 20000,
  599. // // Moved from interfaceConfig.TOOLBAR_TIMEOUT
  600. // // Number of milliseconds for the toolbar buttons to be visible on screen.
  601. // timeout: 4000,
  602. // // Moved from interfaceConfig.TOOLBAR_ALWAYS_VISIBLE
  603. // // Whether toolbar should be always visible or should hide after x milliseconds.
  604. // alwaysVisible: false,
  605. // // Indicates whether the toolbar should still autohide when chat is open
  606. // autoHideWhileChatIsOpen: false,
  607. // },
  608. // Toolbar buttons which have their click/tap event exposed through the API on
  609. // `toolbarButtonClicked`. Passing a string for the button key will
  610. // prevent execution of the click/tap routine; passing an object with `key` and
  611. // `preventExecution` flag on false will not prevent execution of the click/tap
  612. // routine. Below array with mixed mode for passing the buttons.
  613. // buttonsWithNotifyClick: [
  614. // 'camera',
  615. // {
  616. // key: 'chat',
  617. // preventExecution: false
  618. // },
  619. // {
  620. // key: 'closedcaptions',
  621. // preventExecution: true
  622. // },
  623. // 'desktop',
  624. // 'download',
  625. // 'embedmeeting',
  626. // 'etherpad',
  627. // 'feedback',
  628. // 'filmstrip',
  629. // 'fullscreen',
  630. // 'hangup',
  631. // 'help',
  632. // {
  633. // key: 'invite',
  634. // preventExecution: false
  635. // },
  636. // 'livestreaming',
  637. // 'microphone',
  638. // 'mute-everyone',
  639. // 'mute-video-everyone',
  640. // 'noisesuppression',
  641. // 'participants-pane',
  642. // 'profile',
  643. // {
  644. // key: 'raisehand',
  645. // preventExecution: true
  646. // },
  647. // 'recording',
  648. // 'security',
  649. // 'select-background',
  650. // 'settings',
  651. // 'shareaudio',
  652. // 'sharedvideo',
  653. // 'shortcuts',
  654. // 'stats',
  655. // 'tileview',
  656. // 'toggle-camera',
  657. // 'videoquality',
  658. // // The add passcode button from the security dialog.
  659. // {
  660. // key: 'add-passcode',
  661. // preventExecution: false
  662. // },
  663. // ],
  664. // List of pre meeting screens buttons to hide. The values must be one or more of the 5 allowed buttons:
  665. // 'microphone', 'camera', 'select-background', 'invite', 'settings'
  666. // hiddenPremeetingButtons: [],
  667. // Stats
  668. //
  669. // Whether to enable stats collection or not in the TraceablePeerConnection.
  670. // This can be useful for debugging purposes (post-processing/analysis of
  671. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  672. // estimation tests.
  673. // gatherStats: false,
  674. // The interval at which PeerConnection.getStats() is called. Defaults to 10000
  675. // pcStatsInterval: 10000,
  676. // To enable sending statistics to callstats.io you must provide the
  677. // Application ID and Secret.
  678. // callStatsID: '',
  679. // callStatsSecret: '',
  680. // callstatsStoreLogs: true,
  681. // The callstats initialize config params as described in the API:
  682. // https://docs.callstats.io/docs/javascript#callstatsinitialize-with-app-secret
  683. // callStatsConfigParams: {
  684. // disableBeforeUnloadHandler: true, // disables callstats.js's window.onbeforeunload parameter.
  685. // applicationVersion: "app_version", // Application version specified by the developer.
  686. // disablePrecalltest: true, // disables the pre-call test, it is enabled by default.
  687. // siteID: "siteID", // The name/ID of the site/campus from where the call/pre-call test is made.
  688. // additionalIDs: { // additionalIDs object, contains application related IDs.
  689. // customerID: "Customer Identifier. Example, walmart.",
  690. // tenantID: "Tenant Identifier. Example, monster.",
  691. // productName: "Product Name. Example, Jitsi.",
  692. // meetingsName: "Meeting Name. Example, Jitsi loves callstats.",
  693. // serverName: "Server/MiddleBox Name. Example, jvb-prod-us-east-mlkncws12.",
  694. // pbxID: "PBX Identifier. Example, walmart.",
  695. // pbxExtensionID: "PBX Extension Identifier. Example, 5625.",
  696. // fqExtensionID: "Fully qualified Extension Identifier. Example, +71 (US) +5625.",
  697. // sessionID: "Session Identifier. Example, session-12-34",
  698. // },
  699. // collectLegacyStats: true, //enables the collection of legacy stats in chrome browser
  700. // collectIP: true, //enables the collection localIP address
  701. // },
  702. // Enables sending participants' display names to callstats
  703. // enableDisplayNameInStats: false,
  704. // Enables sending participants' emails (if available) to callstats and other analytics
  705. // enableEmailInStats: false,
  706. // faceLandmarks: {
  707. // // Enables sharing your face coordinates. Used for centering faces within a video.
  708. // enableFaceCentering: false,
  709. // // Enables detecting face expressions and sharing data with other participants
  710. // enableFaceExpressionsDetection: false,
  711. // // Enables displaying face expressions in speaker stats
  712. // enableDisplayFaceExpressions: false,
  713. // // Enable rtc stats for face landmarks
  714. // enableRTCStats: false,
  715. // // Minimum required face movement percentage threshold for sending new face centering coordinates data.
  716. // faceCenteringThreshold: 10,
  717. // // Milliseconds for processing a new image capture in order to detect face coordinates if they exist.
  718. // captureInterval: 1000,
  719. // },
  720. // Controls the percentage of automatic feedback shown to participants when callstats is enabled.
  721. // The default value is 100%. If set to 0, no automatic feedback will be requested
  722. // feedbackPercentage: 100,
  723. // Privacy
  724. //
  725. // If third party requests are disabled, no other server will be contacted.
  726. // This means avatars will be locally generated and callstats integration
  727. // will not function.
  728. // disableThirdPartyRequests: false,
  729. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  730. //
  731. p2p: {
  732. // Enables peer to peer mode. When enabled the system will try to
  733. // establish a direct connection when there are exactly 2 participants
  734. // in the room. If that succeeds the conference will stop sending data
  735. // through the JVB and use the peer to peer connection instead. When a
  736. // 3rd participant joins the conference will be moved back to the JVB
  737. // connection.
  738. enabled: true,
  739. // Enable unified plan implementation support on Chromium for p2p connection.
  740. // enableUnifiedOnChrome: false,
  741. // Sets the ICE transport policy for the p2p connection. At the time
  742. // of this writing the list of possible values are 'all' and 'relay',
  743. // but that is subject to change in the future. The enum is defined in
  744. // the WebRTC standard:
  745. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  746. // If not set, the effective value is 'all'.
  747. // iceTransportPolicy: 'all',
  748. // If set to true, it will prefer to use H.264 for P2P calls (if H.264
  749. // is supported). This setting is deprecated, use preferredCodec instead.
  750. // preferH264: true,
  751. // Provides a way to set the video codec preference on the p2p connection. Acceptable
  752. // codec values are 'VP8', 'VP9' and 'H264'.
  753. // preferredCodec: 'H264',
  754. // If set to true, disable H.264 video codec by stripping it out of the
  755. // SDP. This setting is deprecated, use disabledCodec instead.
  756. // disableH264: false,
  757. // Provides a way to prevent a video codec from being negotiated on the p2p connection.
  758. // disabledCodec: '',
  759. // How long we're going to wait, before going back to P2P after the 3rd
  760. // participant has left the conference (to filter out page reload).
  761. // backToP2PDelay: 5,
  762. // The STUN servers that will be used in the peer to peer connections
  763. stunServers: [
  764. // { urls: 'stun:jitsi-meet.example.com:3478' },
  765. { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' },
  766. ],
  767. },
  768. analytics: {
  769. // True if the analytics should be disabled
  770. // disabled: false,
  771. // The Google Analytics Tracking ID:
  772. // googleAnalyticsTrackingId: 'your-tracking-id-UA-123456-1',
  773. // Matomo configuration:
  774. // matomoEndpoint: 'https://your-matomo-endpoint/',
  775. // matomoSiteID: '42',
  776. // The Amplitude APP Key:
  777. // amplitudeAPPKey: '<APP_KEY>',
  778. // Obfuscates room name sent to analytics (amplitude, rtcstats)
  779. // Default value is false.
  780. // obfuscateRoomName: false,
  781. // Configuration for the rtcstats server:
  782. // By enabling rtcstats server every time a conference is joined the rtcstats
  783. // module connects to the provided rtcstatsEndpoint and sends statistics regarding
  784. // PeerConnection states along with getStats metrics polled at the specified
  785. // interval.
  786. // rtcstatsEnabled: false,
  787. // rtcstatsStoreLogs: false,
  788. // In order to enable rtcstats one needs to provide a endpoint url.
  789. // rtcstatsEndpoint: wss://rtcstats-server-pilot.jitsi.net/,
  790. // The interval at which rtcstats will poll getStats, defaults to 10000ms.
  791. // If the value is set to 0 getStats won't be polled and the rtcstats client
  792. // will only send data related to RTCPeerConnection events.
  793. // rtcstatsPollInterval: 10000,
  794. // This determines if rtcstats sends the SDP to the rtcstats server or replaces
  795. // all SDPs with an empty string instead.
  796. // rtcstatsSendSdp: false,
  797. // Array of script URLs to load as lib-jitsi-meet "analytics handlers".
  798. // scriptURLs: [
  799. // "libs/analytics-ga.min.js", // google-analytics
  800. // "https://example.com/my-custom-analytics.js",
  801. // ],
  802. },
  803. // Logs that should go be passed through the 'log' event if a handler is defined for it
  804. // apiLogLevels: ['warn', 'log', 'error', 'info', 'debug'],
  805. // Information about the jitsi-meet instance we are connecting to, including
  806. // the user region as seen by the server.
  807. // deploymentInfo: {
  808. // shard: "shard1",
  809. // region: "europe",
  810. // userRegion: "asia",
  811. // },
  812. // Array<string> of disabled sounds.
  813. // Possible values:
  814. // - 'ASKED_TO_UNMUTE_SOUND'
  815. // - 'E2EE_OFF_SOUND'
  816. // - 'E2EE_ON_SOUND'
  817. // - 'INCOMING_MSG_SOUND'
  818. // - 'KNOCKING_PARTICIPANT_SOUND'
  819. // - 'LIVE_STREAMING_OFF_SOUND'
  820. // - 'LIVE_STREAMING_ON_SOUND'
  821. // - 'NO_AUDIO_SIGNAL_SOUND'
  822. // - 'NOISY_AUDIO_INPUT_SOUND'
  823. // - 'OUTGOING_CALL_EXPIRED_SOUND'
  824. // - 'OUTGOING_CALL_REJECTED_SOUND'
  825. // - 'OUTGOING_CALL_RINGING_SOUND'
  826. // - 'OUTGOING_CALL_START_SOUND'
  827. // - 'PARTICIPANT_JOINED_SOUND'
  828. // - 'PARTICIPANT_LEFT_SOUND'
  829. // - 'RAISE_HAND_SOUND'
  830. // - 'REACTION_SOUND'
  831. // - 'RECORDING_OFF_SOUND'
  832. // - 'RECORDING_ON_SOUND'
  833. // - 'TALK_WHILE_MUTED_SOUND'
  834. // disabledSounds: [],
  835. // DEPRECATED! Use `disabledSounds` instead.
  836. // Decides whether the start/stop recording audio notifications should play on record.
  837. // disableRecordAudioNotification: false,
  838. // DEPRECATED! Use `disabledSounds` instead.
  839. // Disables the sounds that play when other participants join or leave the
  840. // conference (if set to true, these sounds will not be played).
  841. // disableJoinLeaveSounds: false,
  842. // DEPRECATED! Use `disabledSounds` instead.
  843. // Disables the sounds that play when a chat message is received.
  844. // disableIncomingMessageSound: false,
  845. // Information for the chrome extension banner
  846. // chromeExtensionBanner: {
  847. // // The chrome extension to be installed address
  848. // url: 'https://chrome.google.com/webstore/detail/jitsi-meetings/kglhbbefdnlheedjiejgomgmfplipfeb',
  849. // edgeUrl: 'https://microsoftedge.microsoft.com/addons/detail/jitsi-meetings/eeecajlpbgjppibfledfihobcabccihn',
  850. // // Extensions info which allows checking if they are installed or not
  851. // chromeExtensionsInfo: [
  852. // {
  853. // id: 'kglhbbefdnlheedjiejgomgmfplipfeb',
  854. // path: 'jitsi-logo-48x48.png',
  855. // },
  856. // // Edge extension info
  857. // {
  858. // id: 'eeecajlpbgjppibfledfihobcabccihn',
  859. // path: 'jitsi-logo-48x48.png',
  860. // },
  861. // ]
  862. // },
  863. // e2ee: {
  864. // labels,
  865. // externallyManagedKey: false,
  866. // },
  867. // Options related to end-to-end (participant to participant) ping.
  868. // e2eping: {
  869. // // Whether ene-to-end pings should be enabled.
  870. // enabled: false,
  871. //
  872. // // The number of responses to wait for.
  873. // numRequests: 5,
  874. //
  875. // // The max conference size in which e2e pings will be sent.
  876. // maxConferenceSize: 200,
  877. //
  878. // // The maximum number of e2e ping messages per second for the whole conference to aim for.
  879. // // This is used to control the pacing of messages in order to reduce the load on the backend.
  880. // maxMessagesPerSecond: 250,
  881. // },
  882. // If set, will attempt to use the provided video input device label when
  883. // triggering a screenshare, instead of proceeding through the normal flow
  884. // for obtaining a desktop stream.
  885. // NOTE: This option is experimental and is currently intended for internal
  886. // use only.
  887. // _desktopSharingSourceDevice: 'sample-id-or-label',
  888. // If true, any checks to handoff to another application will be prevented
  889. // and instead the app will continue to display in the current browser.
  890. // disableDeepLinking: false,
  891. // A property to disable the right click context menu for localVideo
  892. // the menu has option to flip the locally seen video for local presentations
  893. // disableLocalVideoFlip: false,
  894. // A property used to unset the default flip state of the local video.
  895. // When it is set to 'true', the local(self) video will not be mirrored anymore.
  896. // doNotFlipLocalVideo: false,
  897. // Mainly privacy related settings
  898. // Disables all invite functions from the app (share, invite, dial out...etc)
  899. // disableInviteFunctions: true,
  900. // Disables storing the room name to the recents list. When in an iframe this is ignored and
  901. // the room is never stored in the recents list.
  902. // doNotStoreRoom: true,
  903. // Deployment specific URLs.
  904. // deploymentUrls: {
  905. // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
  906. // // user documentation.
  907. // userDocumentationURL: 'https://docs.example.com/video-meetings.html',
  908. // // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
  909. // // to the specified URL for an app download page.
  910. // downloadAppsUrl: 'https://docs.example.com/our-apps.html',
  911. // },
  912. // Options related to the remote participant menu.
  913. // remoteVideoMenu: {
  914. // // Whether the remote video context menu to be rendered or not.
  915. // disabled: true,
  916. // // If set to true the 'Kick out' button will be disabled.
  917. // disableKick: true,
  918. // // If set to true the 'Grant moderator' button will be disabled.
  919. // disableGrantModerator: true,
  920. // // If set to true the 'Send private message' button will be disabled.
  921. // disablePrivateChat: true,
  922. // },
  923. // Endpoint that enables support for salesforce integration with in-meeting resource linking
  924. // This is required for:
  925. // listing the most recent records - salesforceUrl/records/recents
  926. // searching records - salesforceUrl/records?text=${text}
  927. // retrieving record details - salesforceUrl/records/${id}?type=${type}
  928. // and linking the meeting - salesforceUrl/sessions/${sessionId}/records/${id}
  929. //
  930. // salesforceUrl: 'https://api.example.com/',
  931. // If set to true all muting operations of remote participants will be disabled.
  932. // disableRemoteMute: true,
  933. // Enables support for lip-sync for this client (if the browser supports it).
  934. // enableLipSync: false,
  935. /**
  936. External API url used to receive branding specific information.
  937. If there is no url set or there are missing fields, the defaults are applied.
  938. The config file should be in JSON.
  939. None of the fields are mandatory and the response must have the shape:
  940. {
  941. // The domain url to apply (will replace the domain in the sharing conference link/embed section)
  942. inviteDomain: 'example-company.org,
  943. // The hex value for the colour used as background
  944. backgroundColor: '#fff',
  945. // The url for the image used as background
  946. backgroundImageUrl: 'https://example.com/background-img.png',
  947. // The anchor url used when clicking the logo image
  948. logoClickUrl: 'https://example-company.org',
  949. // The url used for the image used as logo
  950. logoImageUrl: 'https://example.com/logo-img.png',
  951. // Overwrite for pool of background images for avatars
  952. avatarBackgrounds: ['url(https://example.com/avatar-background-1.png)', '#FFF'],
  953. // The lobby/prejoin screen background
  954. premeetingBackground: 'url(https://example.com/premeeting-background.png)',
  955. // A list of images that can be used as video backgrounds.
  956. // When this field is present, the default images will be replaced with those provided.
  957. virtualBackgrounds: ['https://example.com/img.jpg'],
  958. // Object containing a theme's properties. It also supports partial overwrites of the main theme.
  959. // For a list of all possible theme tokens and their current defaults, please check:
  960. // https://github.com/jitsi/jitsi-meet/tree/master/resources/custom-theme/custom-theme.json
  961. // For a short explanations on each of the tokens, please check:
  962. // https://github.com/jitsi/jitsi-meet/blob/master/react/features/base/ui/Tokens.js
  963. // IMPORTANT!: This is work in progress so many of the various tokens are not yet applied in code
  964. // or they are partially applied.
  965. customTheme: {
  966. palette: {
  967. ui01: "orange !important",
  968. ui02: "maroon",
  969. surface02: 'darkgreen',
  970. ui03: "violet",
  971. ui04: "magenta",
  972. ui05: "blueviolet",
  973. field02Hover: 'red',
  974. action01: 'green',
  975. action01Hover: 'lightgreen',
  976. disabled01: 'beige',
  977. success02: 'cadetblue',
  978. action02Hover: 'aliceblue',
  979. },
  980. typography: {
  981. labelRegular: {
  982. fontSize: 25,
  983. lineHeight: 30,
  984. fontWeight: 500,
  985. }
  986. }
  987. }
  988. }
  989. */
  990. // dynamicBrandingUrl: '',
  991. // Options related to the participants pane.
  992. // participantsPane: {
  993. // // Hides the moderator settings tab.
  994. // hideModeratorSettingsTab: false,
  995. // // Hides the more actions button.
  996. // hideMoreActionsButton: false,
  997. // // Hides the mute all button.
  998. // hideMuteAllButton: false,
  999. // },
  1000. // Options related to the breakout rooms feature.
  1001. // breakoutRooms: {
  1002. // // Hides the add breakout room button. This replaces `hideAddRoomButton`.
  1003. // hideAddRoomButton: false,
  1004. // // Hides the auto assign participants button.
  1005. // hideAutoAssignButton: false,
  1006. // // Hides the join breakout room button.
  1007. // hideJoinRoomButton: false,
  1008. // },
  1009. // When true the user cannot add more images to be used as virtual background.
  1010. // Only the default ones from will be available.
  1011. // disableAddingBackgroundImages: false,
  1012. // Disables using screensharing as virtual background.
  1013. // disableScreensharingVirtualBackground: false,
  1014. // Sets the background transparency level. '0' is fully transparent, '1' is opaque.
  1015. // backgroundAlpha: 1,
  1016. // The URL of the moderated rooms microservice, if available. If it
  1017. // is present, a link to the service will be rendered on the welcome page,
  1018. // otherwise the app doesn't render it.
  1019. // moderatedRoomServiceUrl: 'https://moderated.jitsi-meet.example.com',
  1020. // If true, tile view will not be enabled automatically when the participants count threshold is reached.
  1021. // disableTileView: true,
  1022. // If true, the tiles will be displayed contained within the available space rather than enlarged to cover it,
  1023. // with a 16:9 aspect ratio (old behaviour).
  1024. // disableTileEnlargement: true,
  1025. // Controls the visibility and behavior of the top header conference info labels.
  1026. // If a label's id is not in any of the 2 arrays, it will not be visible at all on the header.
  1027. // conferenceInfo: {
  1028. // // those labels will not be hidden in tandem with the toolbox.
  1029. // alwaysVisible: ['recording', 'raised-hands-count'],
  1030. // // those labels will be auto-hidden in tandem with the toolbox buttons.
  1031. // autoHide: [
  1032. // 'subject',
  1033. // 'conference-timer',
  1034. // 'participants-count',
  1035. // 'e2ee',
  1036. // 'transcribing',
  1037. // 'video-quality',
  1038. // 'insecure-room',
  1039. // 'highlight-moment',
  1040. // 'top-panel-toggle',
  1041. // ]
  1042. // },
  1043. // Hides the conference subject
  1044. // hideConferenceSubject: false,
  1045. // Hides the conference timer.
  1046. // hideConferenceTimer: false,
  1047. // Hides the recording label
  1048. // hideRecordingLabel: false,
  1049. // Hides the participants stats
  1050. // hideParticipantsStats: true,
  1051. // Sets the conference subject
  1052. // subject: 'Conference Subject',
  1053. // Sets the conference local subject
  1054. // localSubject: 'Conference Local Subject',
  1055. // This property is related to the use case when jitsi-meet is used via the IFrame API. When the property is true
  1056. // jitsi-meet will use the local storage of the host page instead of its own. This option is useful if the browser
  1057. // is not persisting the local storage inside the iframe.
  1058. // useHostPageLocalStorage: true,
  1059. // Etherpad ("shared document") integration.
  1060. //
  1061. // If set, add a "Open shared document" link to the bottom right menu that
  1062. // will open an etherpad document.
  1063. // etherpad_base: 'https://your-etherpad-installati.on/p/',
  1064. // To enable information about dial-in access to meetings you need to provide
  1065. // dialInNumbersUrl and dialInConfCodeUrl.
  1066. // dialInNumbersUrl returns a json array of numbers that can be used for dial-in.
  1067. // {"countryCode":"US","tollFree":false,"formattedNumber":"+1 123-456-7890"}
  1068. // dialInConfCodeUrl is the conference mapper converting a meeting id to a PIN used for dial-in
  1069. // or the other way around (more info in resources/cloud-api.swagger)
  1070. // List of undocumented settings used in jitsi-meet
  1071. /**
  1072. _immediateReloadThreshold
  1073. debug
  1074. debugAudioLevels
  1075. deploymentInfo
  1076. dialOutAuthUrl
  1077. dialOutCodesUrl
  1078. disableRemoteControl
  1079. displayJids
  1080. externalConnectUrl
  1081. e2eeLabels
  1082. firefox_fake_device
  1083. googleApiApplicationClientID
  1084. iAmRecorder
  1085. iAmSipGateway
  1086. microsoftApiApplicationClientID
  1087. peopleSearchQueryTypes
  1088. peopleSearchUrl
  1089. requireDisplayName
  1090. tokenAuthUrl
  1091. */
  1092. /**
  1093. * This property can be used to alter the generated meeting invite links (in combination with a branding domain
  1094. * which is retrieved internally by jitsi meet) (e.g. https://meet.jit.si/someMeeting
  1095. * can become https://brandedDomain/roomAlias)
  1096. */
  1097. // brandingRoomAlias: null,
  1098. // List of undocumented settings used in lib-jitsi-meet
  1099. /**
  1100. _peerConnStatusOutOfLastNTimeout
  1101. _peerConnStatusRtcMuteTimeout
  1102. abTesting
  1103. avgRtpStatsN
  1104. callStatsConfIDNamespace
  1105. callStatsCustomScriptUrl
  1106. desktopSharingSources
  1107. disableAEC
  1108. disableAGC
  1109. disableAP
  1110. disableHPF
  1111. disableNS
  1112. enableTalkWhileMuted
  1113. forceJVB121Ratio
  1114. forceTurnRelay
  1115. hiddenDomain
  1116. hiddenFromRecorderFeatureEnabled
  1117. ignoreStartMuted
  1118. websocketKeepAlive
  1119. websocketKeepAliveUrl
  1120. */
  1121. /**
  1122. * Default interval (milliseconds) for triggering mouseMoved iframe API event
  1123. */
  1124. mouseMoveCallbackInterval: 1000,
  1125. /**
  1126. Use this array to configure which notifications will be shown to the user
  1127. The items correspond to the title or description key of that notification
  1128. Some of these notifications also depend on some other internal logic to be displayed or not,
  1129. so adding them here will not ensure they will always be displayed
  1130. A falsy value for this prop will result in having all notifications enabled (e.g null, undefined, false)
  1131. */
  1132. // notifications: [
  1133. // 'connection.CONNFAIL', // shown when the connection fails,
  1134. // 'dialog.cameraNotSendingData', // shown when there's no feed from user's camera
  1135. // 'dialog.kickTitle', // shown when user has been kicked
  1136. // 'dialog.liveStreaming', // livestreaming notifications (pending, on, off, limits)
  1137. // 'dialog.lockTitle', // shown when setting conference password fails
  1138. // 'dialog.maxUsersLimitReached', // shown when maximmum users limit has been reached
  1139. // 'dialog.micNotSendingData', // shown when user's mic is not sending any audio
  1140. // 'dialog.passwordNotSupportedTitle', // shown when setting conference password fails due to password format
  1141. // 'dialog.recording', // recording notifications (pending, on, off, limits)
  1142. // 'dialog.remoteControlTitle', // remote control notifications (allowed, denied, start, stop, error)
  1143. // 'dialog.reservationError',
  1144. // 'dialog.serviceUnavailable', // shown when server is not reachable
  1145. // 'dialog.sessTerminated', // shown when there is a failed conference session
  1146. // 'dialog.sessionRestarted', // show when a client reload is initiated because of bridge migration
  1147. // 'dialog.tokenAuthFailed', // show when an invalid jwt is used
  1148. // 'dialog.transcribing', // transcribing notifications (pending, off)
  1149. // 'dialOut.statusMessage', // shown when dial out status is updated.
  1150. // 'liveStreaming.busy', // shown when livestreaming service is busy
  1151. // 'liveStreaming.failedToStart', // shown when livestreaming fails to start
  1152. // 'liveStreaming.unavailableTitle', // shown when livestreaming service is not reachable
  1153. // 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected
  1154. // 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied
  1155. // 'notify.chatMessages', // shown when receiving chat messages while the chat window is closed
  1156. // 'notify.disconnected', // shown when a participant has left
  1157. // 'notify.connectedOneMember', // show when a participant joined
  1158. // 'notify.connectedTwoMembers', // show when two participants joined simultaneously
  1159. // 'notify.connectedThreePlusMembers', // show when more than 2 participants joined simultaneously
  1160. // 'notify.leftOneMember', // show when a participant left
  1161. // 'notify.leftTwoMembers', // show when two participants left simultaneously
  1162. // 'notify.leftThreePlusMembers', // show when more than 2 participants left simultaneously
  1163. // 'notify.grantedTo', // shown when moderator rights were granted to a participant
  1164. // 'notify.hostAskedUnmute', // shown to participant when host asks them to unmute
  1165. // 'notify.invitedOneMember', // shown when 1 participant has been invited
  1166. // 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited
  1167. // 'notify.invitedTwoMembers', // shown when 2 participants have been invited
  1168. // 'notify.kickParticipant', // shown when a participant is kicked
  1169. // 'notify.linkToSalesforce', // shown when joining a meeting with salesforce integration
  1170. // 'notify.moderationStartedTitle', // shown when AV moderation is activated
  1171. // 'notify.moderationStoppedTitle', // shown when AV moderation is deactivated
  1172. // 'notify.moderationInEffectTitle', // shown when user attempts to unmute audio during AV moderation
  1173. // 'notify.moderationInEffectVideoTitle', // shown when user attempts to enable video during AV moderation
  1174. // 'notify.moderationInEffectCSTitle', // shown when user attempts to share content during AV moderation
  1175. // 'notify.mutedRemotelyTitle', // shown when user is muted by a remote party
  1176. // 'notify.mutedTitle', // shown when user has been muted upon joining,
  1177. // 'notify.newDeviceAudioTitle', // prompts the user to use a newly detected audio device
  1178. // 'notify.newDeviceCameraTitle', // prompts the user to use a newly detected camera
  1179. // 'notify.participantWantsToJoin', // shown when lobby is enabled and participant requests to join meeting
  1180. // 'notify.passwordRemovedRemotely', // shown when a password has been removed remotely
  1181. // 'notify.passwordSetRemotely', // shown when a password has been set remotely
  1182. // 'notify.raisedHand', // shown when a partcipant used raise hand,
  1183. // 'notify.startSilentTitle', // shown when user joined with no audio
  1184. // 'notify.unmute', // shown to moderator when user raises hand during AV moderation
  1185. // 'notify.videoMutedRemotelyTitle', // shown when user's video is muted by a remote party,
  1186. // 'prejoin.errorDialOut',
  1187. // 'prejoin.errorDialOutDisconnected',
  1188. // 'prejoin.errorDialOutFailed',
  1189. // 'prejoin.errorDialOutStatus',
  1190. // 'prejoin.errorStatusCode',
  1191. // 'prejoin.errorValidation',
  1192. // 'recording.busy', // shown when recording service is busy
  1193. // 'recording.failedToStart', // shown when recording fails to start
  1194. // 'recording.unavailableTitle', // shown when recording service is not reachable
  1195. // 'toolbar.noAudioSignalTitle', // shown when a broken mic is detected
  1196. // 'toolbar.noisyAudioInputTitle', // shown when noise is detected for the current microphone
  1197. // 'toolbar.talkWhileMutedPopup', // shown when user tries to speak while muted
  1198. // 'transcribing.failedToStart', // shown when transcribing fails to start
  1199. // ],
  1200. // List of notifications to be disabled. Works in tandem with the above setting.
  1201. // disabledNotifications: [],
  1202. // Prevent the filmstrip from autohiding when screen width is under a certain threshold
  1203. // disableFilmstripAutohiding: false,
  1204. // filmstrip: {
  1205. // // Disables user resizable filmstrip. Also, allows configuration of the filmstrip
  1206. // // (width, tiles aspect ratios) through the interfaceConfig options.
  1207. // disableResizable: false,
  1208. // // Disables the stage filmstrip
  1209. // // (displaying multiple participants on stage besides the vertical filmstrip)
  1210. // disableStageFilmstrip: false,
  1211. // // Disables the top panel (only shown when a user is sharing their screen).
  1212. // disableTopPanel: false,
  1213. // // The minimum number of participants that must be in the call for
  1214. // // the top panel layout to be used.
  1215. // minParticipantCountForTopPanel: 50,
  1216. // },
  1217. // Tile view related config options.
  1218. // tileView: {
  1219. // // The optimal number of tiles that are going to be shown in tile view. Depending on the screen size it may
  1220. // // not be possible to show the exact number of participants specified here.
  1221. // numberOfVisibleTiles: 25,
  1222. // },
  1223. // Specifies whether the chat emoticons are disabled or not
  1224. // disableChatSmileys: false,
  1225. // Settings for the GIPHY integration.
  1226. // giphy: {
  1227. // // Whether the feature is enabled or not.
  1228. // enabled: false,
  1229. // // SDK API Key from Giphy.
  1230. // sdkKey: '',
  1231. // // Display mode can be one of:
  1232. // // - tile: show the GIF on the tile of the participant that sent it.
  1233. // // - chat: show the GIF as a message in chat
  1234. // // - all: all of the above. This is the default option
  1235. // displayMode: 'all',
  1236. // // How long the GIF should be displayed on the tile (in milliseconds).
  1237. // tileTime: 5000,
  1238. // },
  1239. // Logging
  1240. // logging: {
  1241. // // Default log level for the app and lib-jitsi-meet.
  1242. // defaultLogLevel: 'trace',
  1243. // // Option to disable LogCollector (which stores the logs on CallStats).
  1244. // //disableLogCollector: true,
  1245. // // Individual loggers are customizable.
  1246. // loggers: {
  1247. // // The following are too verbose in their logging with the default level.
  1248. // 'modules/RTC/TraceablePeerConnection.js': 'info',
  1249. // 'modules/statistics/CallStats.js': 'info',
  1250. // 'modules/xmpp/strophe.util.js': 'log',
  1251. // },
  1252. // Application logo url
  1253. // defaultLogoUrl: 'images/watermark.svg',
  1254. };
  1255. // Set the default values for JaaS customers
  1256. if (enableJaaS) {
  1257. config.dialInNumbersUrl = 'https://conference-mapper.jitsi.net/v1/access/dids';
  1258. config.dialInConfCodeUrl = 'https://conference-mapper.jitsi.net/v1/access';
  1259. config.roomPasswordNumberOfDigits = 10; // skip re-adding it (do not remove comment)
  1260. }