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

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