Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

config.js 56KB

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