Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

config.js 39KB

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