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

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