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

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