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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403
  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. // Hides the participant name editing field in the prejoin screen.
  404. // If requireDisplayName is also set as true, a name should still be provided through
  405. // either the jwt or the userInfo from the iframe api init object in order for this to have an effect.
  406. // hidePrejoinDisplayName: false,
  407. // Require users to always specify a display name.
  408. // requireDisplayName: true,
  409. // Whether to use a welcome page or not. In case it's false a random room
  410. // will be joined when no room is specified.
  411. enableWelcomePage: true,
  412. // Disable app shortcuts that are registered upon joining a conference
  413. // disableShortcuts: false,
  414. // Disable initial browser getUserMedia requests.
  415. // This is useful for scenarios where users might want to start a conference for screensharing only
  416. // disableInitialGUM: false,
  417. // Enabling the close page will ignore the welcome page redirection when
  418. // a call is hangup.
  419. // enableClosePage: false,
  420. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  421. // Setting this to null, will also disable showing the remote videos
  422. // when the toolbar is shown on mouse movements
  423. // disable1On1Mode: null | false | true,
  424. // Default local name to be displayed
  425. // defaultLocalDisplayName: 'me',
  426. // Default remote name to be displayed
  427. // defaultRemoteDisplayName: 'Fellow Jitster',
  428. // Hides the display name from the participant thumbnail
  429. // hideDisplayName: false,
  430. // Hides the dominant speaker name badge that hovers above the toolbox
  431. // hideDominantSpeakerBadge: false,
  432. // Default language for the user interface. Cannot be overwritten.
  433. // defaultLanguage: 'en',
  434. // Disables profile and the edit of all fields from the profile settings (display name and email)
  435. // disableProfile: false,
  436. // Hides the email section under profile settings.
  437. // hideEmailInSettings: false,
  438. // Whether or not some features are checked based on token.
  439. // enableFeaturesBasedOnToken: false,
  440. // When enabled the password used for locking a room is restricted to up to the number of digits specified
  441. // roomPasswordNumberOfDigits: 10,
  442. // default: roomPasswordNumberOfDigits: false,
  443. // Message to show the users. Example: 'The service will be down for
  444. // maintenance at 01:00 AM GMT,
  445. // noticeMessage: '',
  446. // Enables calendar integration, depends on googleApiApplicationClientID
  447. // and microsoftApiApplicationClientID
  448. // enableCalendarIntegration: false,
  449. // Configs for prejoin page.
  450. // prejoinConfig: {
  451. // // When 'true', it shows an intermediate page before joining, where the user can configure their devices.
  452. // // This replaces `prejoinPageEnabled`.
  453. // enabled: true,
  454. // // List of buttons to hide from the extra join options dropdown.
  455. // hideExtraJoinButtons: ['no-audio', 'by-phone']
  456. // },
  457. // When 'true', the user cannot edit the display name.
  458. // (Mainly useful when used in conjuction with the JWT so the JWT name becomes read only.)
  459. // readOnlyName: false,
  460. // If etherpad integration is enabled, setting this to true will
  461. // automatically open the etherpad when a participant joins. This
  462. // does not affect the mobile app since opening an etherpad
  463. // obscures the conference controls -- it's better to let users
  464. // choose to open the pad on their own in that case.
  465. // openSharedDocumentOnJoin: false,
  466. // If true, shows the unsafe room name warning label when a room name is
  467. // deemed unsafe (due to the simplicity in the name) and a password is not
  468. // set or the lobby is not enabled.
  469. // enableInsecureRoomNameWarning: false,
  470. // Whether to automatically copy invitation URL after creating a room.
  471. // Document should be focused for this option to work
  472. // enableAutomaticUrlCopy: false,
  473. // Array with avatar URL prefixes that need to use CORS.
  474. // corsAvatarURLs: [ 'https://www.gravatar.com/avatar/' ],
  475. // Base URL for a Gravatar-compatible service. Defaults to Gravatar.
  476. // DEPRECATED! Use `gravatar.baseUrl` instead.
  477. // gravatarBaseURL: 'https://www.gravatar.com/avatar/',
  478. // Setup for Gravatar-compatible services.
  479. // gravatar: {
  480. // // Defaults to Gravatar.
  481. // baseUrl: 'https://www.gravatar.com/avatar/',
  482. // // True if Gravatar should be disabled.
  483. // disabled: false
  484. // },
  485. // App name to be displayed in the invitation email subject, as an alternative to
  486. // interfaceConfig.APP_NAME.
  487. // inviteAppName: null,
  488. // Moved from interfaceConfig(TOOLBAR_BUTTONS).
  489. // The name of the toolbar buttons to display in the toolbar, including the
  490. // "More actions" menu. If present, the button will display. Exceptions are
  491. // "livestreaming" and "recording" which also require being a moderator and
  492. // some other values in config.js to be enabled. Also, the "profile" button will
  493. // not display for users with a JWT.
  494. // Notes:
  495. // - it's impossible to choose which buttons go in the "More actions" menu
  496. // - it's impossible to control the placement of buttons
  497. // - 'desktop' controls the "Share your screen" button
  498. // - if `toolbarButtons` is undefined, we fallback to enabling all buttons on the UI
  499. // toolbarButtons: [
  500. // 'camera',
  501. // 'chat',
  502. // 'closedcaptions',
  503. // 'desktop',
  504. // 'dock-iframe'
  505. // 'download',
  506. // 'embedmeeting',
  507. // 'etherpad',
  508. // 'feedback',
  509. // 'filmstrip',
  510. // 'fullscreen',
  511. // 'hangup',
  512. // 'help',
  513. // 'highlight',
  514. // 'invite',
  515. // 'linktosalesforce',
  516. // 'livestreaming',
  517. // 'microphone',
  518. // 'participants-pane',
  519. // 'profile',
  520. // 'raisehand',
  521. // 'recording',
  522. // 'security',
  523. // 'select-background',
  524. // 'settings',
  525. // 'shareaudio',
  526. // 'sharedvideo',
  527. // 'shortcuts',
  528. // 'stats',
  529. // 'tileview',
  530. // 'toggle-camera',
  531. // 'undock-iframe',
  532. // 'videoquality',
  533. // '__end'
  534. // ],
  535. // Holds values related to toolbar visibility control.
  536. // toolbarConfig: {
  537. // // Moved from interfaceConfig.INITIAL_TOOLBAR_TIMEOUT
  538. // // The initial numer of miliseconds for the toolbar buttons to be visible on screen.
  539. // initialTimeout: 20000,
  540. // // Moved from interfaceConfig.TOOLBAR_TIMEOUT
  541. // // Number of miliseconds for the toolbar buttons to be visible on screen.
  542. // timeout: 4000,
  543. // // Moved from interfaceConfig.TOOLBAR_ALWAYS_VISIBLE
  544. // // Whether toolbar should be always visible or should hide after x miliseconds.
  545. // alwaysVisible: false,
  546. // // Indicates whether the toolbar should still autohide when chat is open
  547. // autoHideWhileChatIsOpen: false
  548. // },
  549. // Toolbar buttons which have their click/tap event exposed through the API on
  550. // `toolbarButtonClicked`. Passing a string for the button key will
  551. // prevent execution of the click/tap routine; passing an object with `key` and
  552. // `preventExecution` flag on false will not prevent execution of the click/tap
  553. // routine. Below array with mixed mode for passing the buttons.
  554. // buttonsWithNotifyClick: [
  555. // 'camera',
  556. // {
  557. // key: 'chat',
  558. // preventExecution: false
  559. // },
  560. // {
  561. // key: 'closedcaptions',
  562. // preventExecution: true
  563. // },
  564. // 'desktop',
  565. // 'download',
  566. // 'embedmeeting',
  567. // 'etherpad',
  568. // 'feedback',
  569. // 'filmstrip',
  570. // 'fullscreen',
  571. // 'hangup',
  572. // 'help',
  573. // {
  574. // key: 'invite',
  575. // preventExecution: false
  576. // },
  577. // 'livestreaming',
  578. // 'microphone',
  579. // 'mute-everyone',
  580. // 'mute-video-everyone',
  581. // 'participants-pane',
  582. // 'profile',
  583. // {
  584. // key: 'raisehand',
  585. // preventExecution: true
  586. // },
  587. // 'recording',
  588. // 'security',
  589. // 'select-background',
  590. // 'settings',
  591. // 'shareaudio',
  592. // 'sharedvideo',
  593. // 'shortcuts',
  594. // 'stats',
  595. // 'tileview',
  596. // 'toggle-camera',
  597. // 'videoquality',
  598. // // The add passcode button from the security dialog.
  599. // {
  600. // key: 'add-passcode',
  601. // preventExecution: false
  602. // }
  603. // '__end'
  604. // ],
  605. // List of pre meeting screens buttons to hide. The values must be one or more of the 5 allowed buttons:
  606. // 'microphone', 'camera', 'select-background', 'invite', 'settings'
  607. // hiddenPremeetingButtons: [],
  608. // Stats
  609. //
  610. // Whether to enable stats collection or not in the TraceablePeerConnection.
  611. // This can be useful for debugging purposes (post-processing/analysis of
  612. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  613. // estimation tests.
  614. // gatherStats: false,
  615. // The interval at which PeerConnection.getStats() is called. Defaults to 10000
  616. // pcStatsInterval: 10000,
  617. // To enable sending statistics to callstats.io you must provide the
  618. // Application ID and Secret.
  619. // callStatsID: '',
  620. // callStatsSecret: '',
  621. // The callstats initialize config params as described in the API:
  622. // https://docs.callstats.io/docs/javascript#callstatsinitialize-with-app-secret
  623. // callStatsConfigParams: {
  624. // disableBeforeUnloadHandler: true, // disables callstats.js's window.onbeforeunload parameter.
  625. // applicationVersion: "app_version", // Application version specified by the developer.
  626. // disablePrecalltest: true, // disables the pre-call test, it is enabled by default.
  627. // siteID: "siteID", // The name/ID of the site/campus from where the call/pre-call test is made.
  628. // additionalIDs: { // additionalIDs object, contains application related IDs.
  629. // customerID: "Customer Identifier. Example, walmart.",
  630. // tenantID: "Tenant Identifier. Example, monster.",
  631. // productName: "Product Name. Example, Jitsi.",
  632. // meetingsName: "Meeting Name. Example, Jitsi loves callstats.",
  633. // serverName: "Server/MiddleBox Name. Example, jvb-prod-us-east-mlkncws12.",
  634. // pbxID: "PBX Identifier. Example, walmart.",
  635. // pbxExtensionID: "PBX Extension Identifier. Example, 5625.",
  636. // fqExtensionID: "Fully qualified Extension Identifier. Example, +71 (US) +5625.",
  637. // sessionID: "Session Identifier. Example, session-12-34"
  638. // },
  639. // collectLegacyStats: true, //enables the collection of legacy stats in chrome browser
  640. // collectIP: true //enables the collection localIP address
  641. // },
  642. // Enables sending participants' display names to callstats
  643. // enableDisplayNameInStats: false,
  644. // Enables sending participants' emails (if available) to callstats and other analytics
  645. // enableEmailInStats: false,
  646. // faceLandmarks: {
  647. // // Enables sharing your face cordinates. Used for centering faces within a video.
  648. // enableFaceCentering: false,
  649. // // Enables detecting face expressions and sharing data with other participants
  650. // enableFaceExpressionsDetection: false,
  651. // // Enables displaying face expressions in speaker stats
  652. // enableDisplayFaceExpressions: false,
  653. // // Minimum required face movement percentage threshold for sending new face centering coordinates data.
  654. // faceCenteringThreshold: 10,
  655. // // Miliseconds for processing a new image capture in order to detect face coordinates if they exist.
  656. // captureInterval: 100
  657. // },
  658. // Controls the percentage of automatic feedback shown to participants when callstats is enabled.
  659. // The default value is 100%. If set to 0, no automatic feedback will be requested
  660. // feedbackPercentage: 100,
  661. // Privacy
  662. //
  663. // If third party requests are disabled, no other server will be contacted.
  664. // This means avatars will be locally generated and callstats integration
  665. // will not function.
  666. // disableThirdPartyRequests: false,
  667. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  668. //
  669. p2p: {
  670. // Enables peer to peer mode. When enabled the system will try to
  671. // establish a direct connection when there are exactly 2 participants
  672. // in the room. If that succeeds the conference will stop sending data
  673. // through the JVB and use the peer to peer connection instead. When a
  674. // 3rd participant joins the conference will be moved back to the JVB
  675. // connection.
  676. enabled: true,
  677. // Enable unified plan implementation support on Chromium for p2p connection.
  678. // enableUnifiedOnChrome: false,
  679. // Sets the ICE transport policy for the p2p connection. At the time
  680. // of this writing the list of possible values are 'all' and 'relay',
  681. // but that is subject to change in the future. The enum is defined in
  682. // the WebRTC standard:
  683. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  684. // If not set, the effective value is 'all'.
  685. // iceTransportPolicy: 'all',
  686. // If set to true, it will prefer to use H.264 for P2P calls (if H.264
  687. // is supported). This setting is deprecated, use preferredCodec instead.
  688. // preferH264: true,
  689. // Provides a way to set the video codec preference on the p2p connection. Acceptable
  690. // codec values are 'VP8', 'VP9' and 'H264'.
  691. // preferredCodec: 'H264',
  692. // If set to true, disable H.264 video codec by stripping it out of the
  693. // SDP. This setting is deprecated, use disabledCodec instead.
  694. // disableH264: false,
  695. // Provides a way to prevent a video codec from being negotiated on the p2p connection.
  696. // disabledCodec: '',
  697. // How long we're going to wait, before going back to P2P after the 3rd
  698. // participant has left the conference (to filter out page reload).
  699. // backToP2PDelay: 5,
  700. // The STUN servers that will be used in the peer to peer connections
  701. stunServers: [
  702. // { urls: 'stun:jitsi-meet.example.com:3478' },
  703. { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' }
  704. ]
  705. },
  706. analytics: {
  707. // True if the analytics should be disabled
  708. // disabled: false,
  709. // The Google Analytics Tracking ID:
  710. // googleAnalyticsTrackingId: 'your-tracking-id-UA-123456-1'
  711. // Matomo configuration:
  712. // matomoEndpoint: 'https://your-matomo-endpoint/',
  713. // matomoSiteID: '42',
  714. // The Amplitude APP Key:
  715. // amplitudeAPPKey: '<APP_KEY>'
  716. // Configuration for the rtcstats server:
  717. // By enabling rtcstats server every time a conference is joined the rtcstats
  718. // module connects to the provided rtcstatsEndpoint and sends statistics regarding
  719. // PeerConnection states along with getStats metrics polled at the specified
  720. // interval.
  721. // rtcstatsEnabled: false,
  722. // In order to enable rtcstats one needs to provide a endpoint url.
  723. // rtcstatsEndpoint: wss://rtcstats-server-pilot.jitsi.net/,
  724. // The interval at which rtcstats will poll getStats, defaults to 1000ms.
  725. // If the value is set to 0 getStats won't be polled and the rtcstats client
  726. // will only send data related to RTCPeerConnection events.
  727. // rtcstatsPolIInterval: 1000,
  728. // Array of script URLs to load as lib-jitsi-meet "analytics handlers".
  729. // scriptURLs: [
  730. // "libs/analytics-ga.min.js", // google-analytics
  731. // "https://example.com/my-custom-analytics.js"
  732. // ],
  733. },
  734. // Logs that should go be passed through the 'log' event if a handler is defined for it
  735. // apiLogLevels: ['warn', 'log', 'error', 'info', 'debug'],
  736. // Information about the jitsi-meet instance we are connecting to, including
  737. // the user region as seen by the server.
  738. deploymentInfo: {
  739. // shard: "shard1",
  740. // region: "europe",
  741. // userRegion: "asia"
  742. },
  743. // Array<string> of disabled sounds.
  744. // Possible values:
  745. // - 'ASKED_TO_UNMUTE_SOUND'
  746. // - 'E2EE_OFF_SOUND'
  747. // - 'E2EE_ON_SOUND'
  748. // - 'INCOMING_MSG_SOUND'
  749. // - 'KNOCKING_PARTICIPANT_SOUND'
  750. // - 'LIVE_STREAMING_OFF_SOUND'
  751. // - 'LIVE_STREAMING_ON_SOUND'
  752. // - 'NO_AUDIO_SIGNAL_SOUND'
  753. // - 'NOISY_AUDIO_INPUT_SOUND'
  754. // - 'OUTGOING_CALL_EXPIRED_SOUND'
  755. // - 'OUTGOING_CALL_REJECTED_SOUND'
  756. // - 'OUTGOING_CALL_RINGING_SOUND'
  757. // - 'OUTGOING_CALL_START_SOUND'
  758. // - 'PARTICIPANT_JOINED_SOUND'
  759. // - 'PARTICIPANT_LEFT_SOUND'
  760. // - 'RAISE_HAND_SOUND'
  761. // - 'REACTION_SOUND'
  762. // - 'RECORDING_OFF_SOUND'
  763. // - 'RECORDING_ON_SOUND'
  764. // - 'TALK_WHILE_MUTED_SOUND'
  765. // disabledSounds: [],
  766. // DEPRECATED! Use `disabledSounds` instead.
  767. // Decides whether the start/stop recording audio notifications should play on record.
  768. // disableRecordAudioNotification: false,
  769. // DEPRECATED! Use `disabledSounds` instead.
  770. // Disables the sounds that play when other participants join or leave the
  771. // conference (if set to true, these sounds will not be played).
  772. // disableJoinLeaveSounds: false,
  773. // DEPRECATED! Use `disabledSounds` instead.
  774. // Disables the sounds that play when a chat message is received.
  775. // disableIncomingMessageSound: false,
  776. // Information for the chrome extension banner
  777. // chromeExtensionBanner: {
  778. // // The chrome extension to be installed address
  779. // url: 'https://chrome.google.com/webstore/detail/jitsi-meetings/kglhbbefdnlheedjiejgomgmfplipfeb',
  780. // // Extensions info which allows checking if they are installed or not
  781. // chromeExtensionsInfo: [
  782. // {
  783. // id: 'kglhbbefdnlheedjiejgomgmfplipfeb',
  784. // path: 'jitsi-logo-48x48.png'
  785. // }
  786. // ]
  787. // },
  788. // Local Recording
  789. //
  790. // localRecording: {
  791. // Enables local recording.
  792. // Additionally, 'localrecording' (all lowercase) needs to be added to
  793. // the `toolbarButtons`-array for the Local Recording button to show up
  794. // on the toolbar.
  795. //
  796. // enabled: true,
  797. //
  798. // The recording format, can be one of 'ogg', 'flac' or 'wav'.
  799. // format: 'flac'
  800. //
  801. // },
  802. // e2ee: {
  803. // labels,
  804. // externallyManagedKey: false
  805. // },
  806. // Options related to end-to-end (participant to participant) ping.
  807. // e2eping: {
  808. // // Whether ene-to-end pings should be enabled.
  809. // enabled: false,
  810. //
  811. // // The number of responses to wait for.
  812. // numRequests: 5,
  813. //
  814. // // The max conference size in which e2e pings will be sent.
  815. // maxConferenceSize: 200,
  816. //
  817. // // The maximum number of e2e ping messages per second for the whole conference to aim for.
  818. // // This is used to contol the pacing of messages in order to reduce the load on the backend.
  819. // maxMessagesPerSecond: 250
  820. // },
  821. // If set, will attempt to use the provided video input device label when
  822. // triggering a screenshare, instead of proceeding through the normal flow
  823. // for obtaining a desktop stream.
  824. // NOTE: This option is experimental and is currently intended for internal
  825. // use only.
  826. // _desktopSharingSourceDevice: 'sample-id-or-label',
  827. // If true, any checks to handoff to another application will be prevented
  828. // and instead the app will continue to display in the current browser.
  829. // disableDeepLinking: false,
  830. // A property to disable the right click context menu for localVideo
  831. // the menu has option to flip the locally seen video for local presentations
  832. // disableLocalVideoFlip: false,
  833. // A property used to unset the default flip state of the local video.
  834. // When it is set to 'true', the local(self) video will not be mirrored anymore.
  835. // doNotFlipLocalVideo: false,
  836. // Mainly privacy related settings
  837. // Disables all invite functions from the app (share, invite, dial out...etc)
  838. // disableInviteFunctions: true,
  839. // Disables storing the room name to the recents list. When in an iframe this is ignored and
  840. // the room is never stored in the recents list.
  841. // doNotStoreRoom: true,
  842. // Deployment specific URLs.
  843. // deploymentUrls: {
  844. // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
  845. // // user documentation.
  846. // userDocumentationURL: 'https://docs.example.com/video-meetings.html',
  847. // // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
  848. // // to the specified URL for an app download page.
  849. // downloadAppsUrl: 'https://docs.example.com/our-apps.html'
  850. // },
  851. // Options related to the remote participant menu.
  852. // remoteVideoMenu: {
  853. // // Whether the remote video context menu to be rendered or not.
  854. // disabled: true,
  855. // // If set to true the 'Kick out' button will be disabled.
  856. // disableKick: true,
  857. // // If set to true the 'Grant moderator' button will be disabled.
  858. // disableGrantModerator: true,
  859. // // If set to true the 'Send private message' button will be disabled.
  860. // disablePrivateChat: true
  861. // },
  862. // Endpoint that enables support for salesforce integration with in-meeting resource linking
  863. // This is required for:
  864. // listing the most recent records - salesforceUrl/records/recents
  865. // searching records - salesforceUrl/records?text=${text}
  866. // retrieving record details - salesforceUrl/records/${id}?type=${type}
  867. // and linking the meeting - salesforceUrl/sessions/${sessionId}/records/${id}
  868. //
  869. // salesforceUrl: 'https://api.example.com/',
  870. // If set to true all muting operations of remote participants will be disabled.
  871. // disableRemoteMute: true,
  872. // Enables support for lip-sync for this client (if the browser supports it).
  873. // enableLipSync: false
  874. /**
  875. External API url used to receive branding specific information.
  876. If there is no url set or there are missing fields, the defaults are applied.
  877. The config file should be in JSON.
  878. None of the fields are mandatory and the response must have the shape:
  879. {
  880. // The domain url to apply (will replace the domain in the sharing conference link/embed section)
  881. inviteDomain: 'example-company.org,
  882. // The hex value for the colour used as background
  883. backgroundColor: '#fff',
  884. // The url for the image used as background
  885. backgroundImageUrl: 'https://example.com/background-img.png',
  886. // The anchor url used when clicking the logo image
  887. logoClickUrl: 'https://example-company.org',
  888. // The url used for the image used as logo
  889. logoImageUrl: 'https://example.com/logo-img.png',
  890. // Overwrite for pool of background images for avatars
  891. avatarBackgrounds: ['url(https://example.com/avatar-background-1.png)', '#FFF'],
  892. // The lobby/prejoin screen background
  893. premeetingBackground: 'url(https://example.com/premeeting-background.png)',
  894. // A list of images that can be used as video backgrounds.
  895. // When this field is present, the default images will be replaced with those provided.
  896. virtualBackgrounds: ['https://example.com/img.jpg'],
  897. // Object containing a theme's properties. It also supports partial overwrites of the main theme.
  898. // For a list of all possible theme tokens and their current defaults, please check:
  899. // https://github.com/jitsi/jitsi-meet/tree/master/resources/custom-theme/custom-theme.json
  900. // For a short explanations on each of the tokens, please check:
  901. // https://github.com/jitsi/jitsi-meet/blob/master/react/features/base/ui/Tokens.js
  902. // IMPORTANT!: This is work in progress so many of the various tokens are not yet applied in code
  903. // or they are partially applied.
  904. customTheme: {
  905. palette: {
  906. ui01: "orange !important",
  907. ui02: "maroon",
  908. surface02: 'darkgreen',
  909. ui03: "violet",
  910. ui04: "magenta",
  911. ui05: "blueviolet",
  912. field02Hover: 'red',
  913. action01: 'green',
  914. action01Hover: 'lightgreen',
  915. action02Disabled: 'beige',
  916. success02: 'cadetblue',
  917. action02Hover: 'aliceblue'
  918. },
  919. typography: {
  920. labelRegular: {
  921. fontSize: 25,
  922. lineHeight: 30,
  923. fontWeight: 500
  924. }
  925. }
  926. }
  927. }
  928. */
  929. // dynamicBrandingUrl: '',
  930. // Options related to the participants pane.
  931. // participantsPane: {
  932. // // Hides the moderator settings tab.
  933. // hideModeratorSettingsTab: false,
  934. // // Hides the more actions button.
  935. // hideMoreActionsButton: false,
  936. // // Hides the mute all button.
  937. // hideMuteAllButton: false
  938. // },
  939. // Options related to the breakout rooms feature.
  940. // breakoutRooms: {
  941. // // Hides the add breakout room button. This replaces `hideAddRoomButton`.
  942. // hideAddRoomButton: false,
  943. // // Hides the auto assign participants button.
  944. // hideAutoAssignButton: false,
  945. // // Hides the join breakout room button.
  946. // hideJoinRoomButton: false
  947. // },
  948. // When true the user cannot add more images to be used as virtual background.
  949. // Only the default ones from will be available.
  950. // disableAddingBackgroundImages: false,
  951. // Disables using screensharing as virtual background.
  952. // disableScreensharingVirtualBackground: false,
  953. // Sets the background transparency level. '0' is fully transparent, '1' is opaque.
  954. // backgroundAlpha: 1,
  955. // The URL of the moderated rooms microservice, if available. If it
  956. // is present, a link to the service will be rendered on the welcome page,
  957. // otherwise the app doesn't render it.
  958. // moderatedRoomServiceUrl: 'https://moderated.jitsi-meet.example.com',
  959. // If true, tile view will not be enabled automatically when the participants count threshold is reached.
  960. // disableTileView: true,
  961. // If true, the tiles will be displayed contained within the available space rather than enlarged to cover it,
  962. // with a 16:9 aspect ratio (old behaviour).
  963. // disableTileEnlargement: true,
  964. // Controls the visibility and behavior of the top header conference info labels.
  965. // If a label's id is not in any of the 2 arrays, it will not be visible at all on the header.
  966. // conferenceInfo: {
  967. // // those labels will not be hidden in tandem with the toolbox.
  968. // alwaysVisible: ['recording', 'raised-hands-count'],
  969. // // those labels will be auto-hidden in tandem with the toolbox buttons.
  970. // autoHide: [
  971. // 'subject',
  972. // 'conference-timer',
  973. // 'participants-count',
  974. // 'e2ee',
  975. // 'transcribing',
  976. // 'video-quality',
  977. // 'insecure-room',
  978. // 'highlight-moment'
  979. // ]
  980. // },
  981. // Hides the conference subject
  982. // hideConferenceSubject: false,
  983. // Hides the conference timer.
  984. // hideConferenceTimer: false,
  985. // Hides the recording label
  986. // hideRecordingLabel: false,
  987. // Hides the participants stats
  988. // hideParticipantsStats: true,
  989. // Sets the conference subject
  990. // subject: 'Conference Subject',
  991. // Sets the conference local subject
  992. // localSubject: 'Conference Local Subject',
  993. // This property is related to the use case when jitsi-meet is used via the IFrame API. When the property is true
  994. // jitsi-meet will use the local storage of the host page instead of its own. This option is useful if the browser
  995. // is not persisting the local storage inside the iframe.
  996. // useHostPageLocalStorage: true,
  997. // etherpad ("shared document") integration.
  998. //
  999. // If set, add a "Open shared document" link to the bottom right menu that
  1000. // will open an etherpad document.
  1001. // etherpad_base: 'https://your-etherpad-installati.on/p/',
  1002. // To enable information about dial-in access to meetings you need to provide
  1003. // dialInNumbersUrl and dialInConfCodeUrl.
  1004. // dialInNumbersUrl returns a json array of numbers that can be used for dial-in.
  1005. // {"countryCode":"US","tollFree":false,"formattedNumber":"+1 123-456-7890"}
  1006. // dialInConfCodeUrl is the conference mapper converting a meeting id to a PIN used for dial-in
  1007. // or the other way around (more info in resources/cloud-api.swagger)
  1008. //
  1009. // For JaaS customers the default values are:
  1010. // dialInNumbersUrl: 'https://conference-mapper.jitsi.net/v1/access/dids',
  1011. // dialInConfCodeUrl: 'https://conference-mapper.jitsi.net/v1/access',
  1012. //
  1013. // List of undocumented settings used in jitsi-meet
  1014. /**
  1015. _immediateReloadThreshold
  1016. debug
  1017. debugAudioLevels
  1018. deploymentInfo
  1019. dialOutAuthUrl
  1020. dialOutCodesUrl
  1021. disableRemoteControl
  1022. displayJids
  1023. externalConnectUrl
  1024. e2eeLabels
  1025. firefox_fake_device
  1026. googleApiApplicationClientID
  1027. iAmRecorder
  1028. iAmSipGateway
  1029. microsoftApiApplicationClientID
  1030. peopleSearchQueryTypes
  1031. peopleSearchUrl
  1032. requireDisplayName
  1033. tokenAuthUrl
  1034. */
  1035. /**
  1036. * This property can be used to alter the generated meeting invite links (in combination with a branding domain
  1037. * which is retrieved internally by jitsi meet) (e.g. https://meet.jit.si/someMeeting
  1038. * can become https://brandedDomain/roomAlias)
  1039. */
  1040. // brandingRoomAlias: null,
  1041. // List of undocumented settings used in lib-jitsi-meet
  1042. /**
  1043. _peerConnStatusOutOfLastNTimeout
  1044. _peerConnStatusRtcMuteTimeout
  1045. abTesting
  1046. avgRtpStatsN
  1047. callStatsConfIDNamespace
  1048. callStatsCustomScriptUrl
  1049. desktopSharingSources
  1050. disableAEC
  1051. disableAGC
  1052. disableAP
  1053. disableHPF
  1054. disableNS
  1055. enableTalkWhileMuted
  1056. forceJVB121Ratio
  1057. forceTurnRelay
  1058. hiddenDomain
  1059. hiddenFromRecorderFeatureEnabled
  1060. ignoreStartMuted
  1061. websocketKeepAlive
  1062. websocketKeepAliveUrl
  1063. */
  1064. /**
  1065. * Default interval (milliseconds) for triggering mouseMoved iframe API event
  1066. */
  1067. mouseMoveCallbackInterval: 1000,
  1068. /**
  1069. Use this array to configure which notifications will be shown to the user
  1070. The items correspond to the title or description key of that notification
  1071. Some of these notifications also depend on some other internal logic to be displayed or not,
  1072. so adding them here will not ensure they will always be displayed
  1073. A falsy value for this prop will result in having all notifications enabled (e.g null, undefined, false)
  1074. */
  1075. // notifications: [
  1076. // 'connection.CONNFAIL', // shown when the connection fails,
  1077. // 'dialog.cameraNotSendingData', // shown when there's no feed from user's camera
  1078. // 'dialog.kickTitle', // shown when user has been kicked
  1079. // 'dialog.liveStreaming', // livestreaming notifications (pending, on, off, limits)
  1080. // 'dialog.lockTitle', // shown when setting conference password fails
  1081. // 'dialog.maxUsersLimitReached', // shown when maximmum users limit has been reached
  1082. // 'dialog.micNotSendingData', // shown when user's mic is not sending any audio
  1083. // 'dialog.passwordNotSupportedTitle', // shown when setting conference password fails due to password format
  1084. // 'dialog.recording', // recording notifications (pending, on, off, limits)
  1085. // 'dialog.remoteControlTitle', // remote control notifications (allowed, denied, start, stop, error)
  1086. // 'dialog.reservationError',
  1087. // 'dialog.serviceUnavailable', // shown when server is not reachable
  1088. // 'dialog.sessTerminated', // shown when there is a failed conference session
  1089. // 'dialog.sessionRestarted', // show when a client reload is initiated because of bridge migration
  1090. // 'dialog.tokenAuthFailed', // show when an invalid jwt is used
  1091. // 'dialog.transcribing', // transcribing notifications (pending, off)
  1092. // 'dialOut.statusMessage', // shown when dial out status is updated.
  1093. // 'liveStreaming.busy', // shown when livestreaming service is busy
  1094. // 'liveStreaming.failedToStart', // shown when livestreaming fails to start
  1095. // 'liveStreaming.unavailableTitle', // shown when livestreaming service is not reachable
  1096. // 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected
  1097. // 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied
  1098. // 'localRecording.localRecording', // shown when a local recording is started
  1099. // 'notify.chatMessages', // shown when receiving chat messages while the chat window is closed
  1100. // 'notify.disconnected', // shown when a participant has left
  1101. // 'notify.connectedOneMember', // show when a participant joined
  1102. // 'notify.connectedTwoMembers', // show when two participants joined simultaneously
  1103. // 'notify.connectedThreePlusMembers', // show when more than 2 participants joined simultaneously
  1104. // 'notify.leftOneMember', // show when a participant left
  1105. // 'notify.leftTwoMembers', // show when two participants left simultaneously
  1106. // 'notify.leftThreePlusMembers', // show when more than 2 participants left simultaneously
  1107. // 'notify.grantedTo', // shown when moderator rights were granted to a participant
  1108. // 'notify.invitedOneMember', // shown when 1 participant has been invited
  1109. // 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited
  1110. // 'notify.invitedTwoMembers', // shown when 2 participants have been invited
  1111. // 'notify.kickParticipant', // shown when a participant is kicked
  1112. // 'notify.linkToSalesforce', // shown when joining a meeting with salesforce integration
  1113. // 'notify.moderationStartedTitle', // shown when AV moderation is activated
  1114. // 'notify.moderationStoppedTitle', // shown when AV moderation is deactivated
  1115. // 'notify.moderationInEffectTitle', // shown when user attempts to unmute audio during AV moderation
  1116. // 'notify.moderationInEffectVideoTitle', // shown when user attempts to enable video during AV moderation
  1117. // 'notify.moderationInEffectCSTitle', // shown when user attempts to share content during AV moderation
  1118. // 'notify.mutedRemotelyTitle', // shown when user is muted by a remote party
  1119. // 'notify.mutedTitle', // shown when user has been muted upon joining,
  1120. // 'notify.newDeviceAudioTitle', // prompts the user to use a newly detected audio device
  1121. // 'notify.newDeviceCameraTitle', // prompts the user to use a newly detected camera
  1122. // 'notify.participantWantsToJoin', // shown when lobby is enabled and participant requests to join meeting
  1123. // 'notify.passwordRemovedRemotely', // shown when a password has been removed remotely
  1124. // 'notify.passwordSetRemotely', // shown when a password has been set remotely
  1125. // 'notify.raisedHand', // shown when a partcipant used raise hand,
  1126. // 'notify.startSilentTitle', // shown when user joined with no audio
  1127. // 'notify.unmute', // shown to moderator when user raises hand during AV moderation
  1128. // 'notify.hostAskedUnmute', // shown to participant when host asks them to unmute
  1129. // 'prejoin.errorDialOut',
  1130. // 'prejoin.errorDialOutDisconnected',
  1131. // 'prejoin.errorDialOutFailed',
  1132. // 'prejoin.errorDialOutStatus',
  1133. // 'prejoin.errorStatusCode',
  1134. // 'prejoin.errorValidation',
  1135. // 'recording.busy', // shown when recording service is busy
  1136. // 'recording.failedToStart', // shown when recording fails to start
  1137. // 'recording.unavailableTitle', // shown when recording service is not reachable
  1138. // 'toolbar.noAudioSignalTitle', // shown when a broken mic is detected
  1139. // 'toolbar.noisyAudioInputTitle', // shown when noise is detected for the current microphone
  1140. // 'toolbar.talkWhileMutedPopup', // shown when user tries to speak while muted
  1141. // 'transcribing.failedToStart' // shown when transcribing fails to start
  1142. // ],
  1143. // List of notifications to be disabled. Works in tandem with the above setting.
  1144. // disabledNotifications: [],
  1145. // Prevent the filmstrip from autohiding when screen width is under a certain threshold
  1146. // disableFilmstripAutohiding: false,
  1147. // filmstrip: {
  1148. // // Disables user resizable filmstrip. Also, allows configuration of the filmstrip
  1149. // // (width, tiles aspect ratios) through the interfaceConfig options.
  1150. // disableResizable: false,
  1151. // // Disables the stage filmstrip
  1152. // // (displaying multiple participants on stage besides the vertical filmstrip)
  1153. // disableStageFilmstrip: false
  1154. // },
  1155. // Tile view related config options.
  1156. // tileView: {
  1157. // // The optimal number of tiles that are going to be shown in tile view. Depending on the screen size it may
  1158. // // not be possible to show the exact number of participants specified here.
  1159. // numberOfVisibleTiles: 25
  1160. // },
  1161. // Specifies whether the chat emoticons are disabled or not
  1162. // disableChatSmileys: false,
  1163. // Settings for the GIPHY integration.
  1164. // giphy: {
  1165. // // Whether the feature is enabled or not.
  1166. // enabled: false,
  1167. // // SDK API Key from Giphy.
  1168. // sdkKey: '',
  1169. // // Display mode can be one of:
  1170. // // - tile: show the GIF on the tile of the participant that sent it.
  1171. // // - chat: show the GIF as a message in chat
  1172. // // - all: all of the above. This is the default option
  1173. // displayMode: 'all',
  1174. // // How long the GIF should be displayed on the tile (in miliseconds).
  1175. // tileTime: 5000
  1176. // },
  1177. // Allow all above example options to include a trailing comma and
  1178. // prevent fear when commenting out the last value.
  1179. makeJsonParserHappy: 'even if last key had a trailing comma'
  1180. // no configuration value should follow this line.
  1181. };
  1182. /* eslint-enable no-unused-vars, no-var */