You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.js 58KB

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