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

config.js 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660
  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. // Jirecon recording component domain.
  13. // jirecon: 'jirecon.jitsi-meet.example.com',
  14. // Call control component (Jigasi).
  15. // call_control: 'callcontrol.jitsi-meet.example.com',
  16. // Focus component domain. Defaults to focus.<domain>.
  17. // focus: 'focus.jitsi-meet.example.com',
  18. // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
  19. muc: 'conference.jitsi-meet.example.com'
  20. },
  21. // BOSH URL. FIXME: use XEP-0156 to discover it.
  22. bosh: '//jitsi-meet.example.com/http-bind',
  23. // Websocket URL
  24. // websocket: 'wss://jitsi-meet.example.com/xmpp-websocket',
  25. // The name of client node advertised in XEP-0115 'c' stanza
  26. clientNode: 'http://jitsi.org/jitsimeet',
  27. // The real JID of focus participant - can be overridden here
  28. // Do not change username - FIXME: Make focus username configurable
  29. // https://github.com/jitsi/jitsi-meet/issues/7376
  30. // focusUserJid: 'focus@auth.jitsi-meet.example.com',
  31. // Testing / experimental features.
  32. //
  33. testing: {
  34. // Disables the End to End Encryption feature. Useful for debugging
  35. // issues related to insertable streams.
  36. // disableE2EE: false,
  37. // P2P test mode disables automatic switching to P2P when there are 2
  38. // participants in the conference.
  39. p2pTestMode: false
  40. // Enables the test specific features consumed by jitsi-meet-torture
  41. // testMode: false
  42. // Disables the auto-play behavior of *all* newly created video element.
  43. // This is useful when the client runs on a host with limited resources.
  44. // noAutoPlayVideo: false
  45. // Enable / disable 500 Kbps bitrate cap on desktop tracks. When enabled,
  46. // simulcast is turned off for the desktop share. If presenter is turned
  47. // on while screensharing is in progress, the max bitrate is automatically
  48. // adjusted to 2.5 Mbps. This takes a value between 0 and 1 which determines
  49. // the probability for this to be enabled.
  50. // capScreenshareBitrate: 1 // 0 to disable
  51. },
  52. // Disables ICE/UDP by filtering out local and remote UDP candidates in
  53. // signalling.
  54. // webrtcIceUdpDisable: false,
  55. // Disables ICE/TCP by filtering out local and remote TCP candidates in
  56. // signalling.
  57. // webrtcIceTcpDisable: false,
  58. // Media
  59. //
  60. // Audio
  61. // Disable measuring of audio levels.
  62. // disableAudioLevels: false,
  63. // audioLevelsInterval: 200,
  64. // Enabling this will run the lib-jitsi-meet no audio detection module which
  65. // will notify the user if the current selected microphone has no audio
  66. // input and will suggest another valid device if one is present.
  67. enableNoAudioDetection: true,
  68. // Enabling this will run the lib-jitsi-meet noise detection module which will
  69. // notify the user if there is noise, other than voice, coming from the current
  70. // selected microphone. The purpose it to let the user know that the input could
  71. // be potentially unpleasant for other meeting participants.
  72. enableNoisyMicDetection: true,
  73. // Start the conference in audio only mode (no video is being received nor
  74. // sent).
  75. // startAudioOnly: false,
  76. // Every participant after the Nth will start audio muted.
  77. // startAudioMuted: 10,
  78. // Start calls with audio muted. Unlike the option above, this one is only
  79. // applied locally. FIXME: having these 2 options is confusing.
  80. // startWithAudioMuted: false,
  81. // Enabling it (with #params) will disable local audio output of remote
  82. // participants and to enable it back a reload is needed.
  83. // startSilent: false
  84. // Sets the preferred target bitrate for the Opus audio codec by setting its
  85. // 'maxaveragebitrate' parameter. Currently not available in p2p mode.
  86. // Valid values are in the range 6000 to 510000
  87. // opusMaxAverageBitrate: 20000,
  88. // Video
  89. // Sets the preferred resolution (height) for local video. Defaults to 720.
  90. // resolution: 720,
  91. // How many participants while in the tile view mode, before the receiving video quality is reduced from HD to SD.
  92. // Use -1 to disable.
  93. // maxFullResolutionParticipants: 2
  94. // w3c spec-compliant video constraints to use for video capture. Currently
  95. // used by browsers that return true from lib-jitsi-meet's
  96. // util#browser#usesNewGumFlow. The constraints are independent from
  97. // this config's resolution value. Defaults to requesting an ideal
  98. // resolution of 720p.
  99. // constraints: {
  100. // video: {
  101. // height: {
  102. // ideal: 720,
  103. // max: 720,
  104. // min: 240
  105. // }
  106. // }
  107. // },
  108. // Enable / disable simulcast support.
  109. // disableSimulcast: false,
  110. // Enable / disable layer suspension. If enabled, endpoints whose HD
  111. // layers are not in use will be suspended (no longer sent) until they
  112. // are requested again.
  113. // enableLayerSuspension: false,
  114. // Every participant after the Nth will start video muted.
  115. // startVideoMuted: 10,
  116. // Start calls with video muted. Unlike the option above, this one is only
  117. // applied locally. FIXME: having these 2 options is confusing.
  118. // startWithVideoMuted: false,
  119. // If set to true, prefer to use the H.264 video codec (if supported).
  120. // Note that it's not recommended to do this because simulcast is not
  121. // supported when using H.264. For 1-to-1 calls this setting is enabled by
  122. // default and can be toggled in the p2p section.
  123. // preferH264: true,
  124. // If set to true, disable H.264 video codec by stripping it out of the
  125. // SDP.
  126. // disableH264: false,
  127. // Desktop sharing
  128. // Optional desktop sharing frame rate options. Default value: min:5, max:5.
  129. // desktopSharingFrameRate: {
  130. // min: 5,
  131. // max: 5
  132. // },
  133. // Try to start calls with screen-sharing instead of camera video.
  134. // startScreenSharing: false,
  135. // Recording
  136. // Whether to enable file recording or not.
  137. // fileRecordingsEnabled: false,
  138. // Enable the dropbox integration.
  139. // dropbox: {
  140. // appKey: '<APP_KEY>' // Specify your app key here.
  141. // // A URL to redirect the user to, after authenticating
  142. // // by default uses:
  143. // // 'https://jitsi-meet.example.com/static/oauth.html'
  144. // redirectURI:
  145. // 'https://jitsi-meet.example.com/subfolder/static/oauth.html'
  146. // },
  147. // When integrations like dropbox are enabled only that will be shown,
  148. // by enabling fileRecordingsServiceEnabled, we show both the integrations
  149. // and the generic recording service (its configuration and storage type
  150. // depends on jibri configuration)
  151. // fileRecordingsServiceEnabled: false,
  152. // Whether to show the possibility to share file recording with other people
  153. // (e.g. meeting participants), based on the actual implementation
  154. // on the backend.
  155. // fileRecordingsServiceSharingEnabled: false,
  156. // Whether to enable live streaming or not.
  157. // liveStreamingEnabled: false,
  158. // Transcription (in interface_config,
  159. // subtitles and buttons can be configured)
  160. // transcribingEnabled: false,
  161. // Enables automatic turning on captions when recording is started
  162. // autoCaptionOnRecord: false,
  163. // Misc
  164. // Default value for the channel "last N" attribute. -1 for unlimited.
  165. channelLastN: -1,
  166. // Provides a way to use different "last N" values based on the number of participants in the conference.
  167. // The keys in an Object represent number of participants and the values are "last N" to be used when number of
  168. // participants gets to or above the number.
  169. //
  170. // For the given example mapping, "last N" will be set to 20 as long as there are at least 5, but less than
  171. // 29 participants in the call and it will be lowered to 15 when the 30th participant joins. The 'channelLastN'
  172. // will be used as default until the first threshold is reached.
  173. //
  174. // lastNLimits: {
  175. // 5: 20,
  176. // 30: 15,
  177. // 50: 10,
  178. // 70: 5,
  179. // 90: 2
  180. // },
  181. // Specify the settings for video quality optimizations on the client.
  182. // videoQuality: {
  183. //
  184. // // Provides a way to configure the maximum bitrates that will be enforced on the simulcast streams for
  185. // // video tracks. The keys in the object represent the type of the stream (LD, SD or HD) and the values
  186. // // are the max.bitrates to be set on that particular type of stream. The actual send may vary based on
  187. // // the available bandwidth calculated by the browser, but it will be capped by the values specified here.
  188. // // This is currently not implemented on app based clients on mobile.
  189. // maxBitratesVideo: {
  190. // low: 200000,
  191. // standard: 500000,
  192. // high: 1500000
  193. // },
  194. //
  195. // // The options can be used to override default thresholds of video thumbnail heights corresponding to
  196. // // the video quality levels used in the application. At the time of this writing the allowed levels are:
  197. // // 'low' - for the low quality level (180p at the time of this writing)
  198. // // 'standard' - for the medium quality level (360p)
  199. // // 'high' - for the high quality level (720p)
  200. // // The keys should be positive numbers which represent the minimal thumbnail height for the quality level.
  201. // //
  202. // // With the default config value below the application will use 'low' quality until the thumbnails are
  203. // // at least 360 pixels tall. If the thumbnail height reaches 720 pixels then the application will switch to
  204. // // the high quality.
  205. // minHeightForQualityLvl: {
  206. // 360: 'standard,
  207. // 720: 'high'
  208. // }
  209. // },
  210. // // Options for the recording limit notification.
  211. // recordingLimit: {
  212. //
  213. // // The recording limit in minutes. Note: This number appears in the notification text
  214. // // but doesn't enforce the actual recording time limit. This should be configured in
  215. // // jibri!
  216. // limit: 60,
  217. //
  218. // // The name of the app with unlimited recordings.
  219. // appName: 'Unlimited recordings APP',
  220. //
  221. // // The URL of the app with unlimited recordings.
  222. // appURL: 'https://unlimited.recordings.app.com/'
  223. // },
  224. // Disables or enables RTX (RFC 4588) (defaults to false).
  225. // disableRtx: false,
  226. // Disables or enables TCC (the default is in Jicofo and set to true)
  227. // (draft-holmer-rmcat-transport-wide-cc-extensions-01). This setting
  228. // affects congestion control, it practically enables send-side bandwidth
  229. // estimations.
  230. // enableTcc: true,
  231. // Disables or enables REMB (the default is in Jicofo and set to false)
  232. // (draft-alvestrand-rmcat-remb-03). This setting affects congestion
  233. // control, it practically enables recv-side bandwidth estimations. When
  234. // both TCC and REMB are enabled, TCC takes precedence. When both are
  235. // disabled, then bandwidth estimations are disabled.
  236. // enableRemb: false,
  237. // Enables ICE restart logic in LJM and displays the page reload overlay on
  238. // ICE failure. Current disabled by default because it's causing issues with
  239. // signaling when Octo is enabled. Also when we do an "ICE restart"(which is
  240. // not a real ICE restart), the client maintains the TCC sequence number
  241. // counter, but the bridge resets it. The bridge sends media packets with
  242. // TCC sequence numbers starting from 0.
  243. // enableIceRestart: false,
  244. // Defines the minimum number of participants to start a call (the default
  245. // is set in Jicofo and set to 2).
  246. // minParticipants: 2,
  247. // Use the TURN servers discovered via XEP-0215 for the jitsi-videobridge
  248. // connection
  249. // useStunTurn: true,
  250. // Use TURN/UDP servers for the jitsi-videobridge connection (by default
  251. // we filter out TURN/UDP because it is usually not needed since the
  252. // bridge itself is reachable via UDP)
  253. // useTurnUdp: false
  254. // Enables / disables a data communication channel with the Videobridge.
  255. // Values can be 'datachannel', 'websocket', true (treat it as
  256. // 'datachannel'), undefined (treat it as 'datachannel') and false (don't
  257. // open any channel).
  258. // openBridgeChannel: true,
  259. // UI
  260. //
  261. // Require users to always specify a display name.
  262. // requireDisplayName: true,
  263. // Whether to use a welcome page or not. In case it's false a random room
  264. // will be joined when no room is specified.
  265. enableWelcomePage: true,
  266. // Enabling the close page will ignore the welcome page redirection when
  267. // a call is hangup.
  268. // enableClosePage: false,
  269. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  270. // disable1On1Mode: false,
  271. // Default language for the user interface.
  272. // defaultLanguage: 'en',
  273. // If true all users without a token will be considered guests and all users
  274. // with token will be considered non-guests. Only guests will be allowed to
  275. // edit their profile.
  276. enableUserRolesBasedOnToken: false,
  277. // Whether or not some features are checked based on token.
  278. // enableFeaturesBasedOnToken: false,
  279. // Enable lock room for all moderators, even when userRolesBasedOnToken is enabled and participants are guests.
  280. // lockRoomGuestEnabled: false,
  281. // When enabled the password used for locking a room is restricted to up to the number of digits specified
  282. // roomPasswordNumberOfDigits: 10,
  283. // default: roomPasswordNumberOfDigits: false,
  284. // Message to show the users. Example: 'The service will be down for
  285. // maintenance at 01:00 AM GMT,
  286. // noticeMessage: '',
  287. // Enables calendar integration, depends on googleApiApplicationClientID
  288. // and microsoftApiApplicationClientID
  289. // enableCalendarIntegration: false,
  290. // When 'true', it shows an intermediate page before joining, where the user can configure their devices.
  291. // prejoinPageEnabled: false,
  292. // If true, shows the unsafe room name warning label when a room name is
  293. // deemed unsafe (due to the simplicity in the name) and a password is not
  294. // set or the lobby is not enabled.
  295. // enableInsecureRoomNameWarning: false,
  296. // Stats
  297. //
  298. // Whether to enable stats collection or not in the TraceablePeerConnection.
  299. // This can be useful for debugging purposes (post-processing/analysis of
  300. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  301. // estimation tests.
  302. // gatherStats: false,
  303. // The interval at which PeerConnection.getStats() is called. Defaults to 10000
  304. // pcStatsInterval: 10000,
  305. // To enable sending statistics to callstats.io you must provide the
  306. // Application ID and Secret.
  307. // callStatsID: '',
  308. // callStatsSecret: '',
  309. // Enables sending participants' display names to callstats
  310. // enableDisplayNameInStats: false,
  311. // Enables sending participants' emails (if available) to callstats and other analytics
  312. // enableEmailInStats: false,
  313. // Privacy
  314. //
  315. // If third party requests are disabled, no other server will be contacted.
  316. // This means avatars will be locally generated and callstats integration
  317. // will not function.
  318. // disableThirdPartyRequests: false,
  319. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  320. //
  321. p2p: {
  322. // Enables peer to peer mode. When enabled the system will try to
  323. // establish a direct connection when there are exactly 2 participants
  324. // in the room. If that succeeds the conference will stop sending data
  325. // through the JVB and use the peer to peer connection instead. When a
  326. // 3rd participant joins the conference will be moved back to the JVB
  327. // connection.
  328. enabled: true,
  329. // Use XEP-0215 to fetch STUN and TURN servers.
  330. // useStunTurn: true,
  331. // The STUN servers that will be used in the peer to peer connections
  332. stunServers: [
  333. // { urls: 'stun:jitsi-meet.example.com:3478' },
  334. { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' }
  335. ]
  336. // Sets the ICE transport policy for the p2p connection. At the time
  337. // of this writing the list of possible values are 'all' and 'relay',
  338. // but that is subject to change in the future. The enum is defined in
  339. // the WebRTC standard:
  340. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  341. // If not set, the effective value is 'all'.
  342. // iceTransportPolicy: 'all',
  343. // If set to true, it will prefer to use H.264 for P2P calls (if H.264
  344. // is supported).
  345. // preferH264: true
  346. // If set to true, disable H.264 video codec by stripping it out of the
  347. // SDP.
  348. // disableH264: false,
  349. // How long we're going to wait, before going back to P2P after the 3rd
  350. // participant has left the conference (to filter out page reload).
  351. // backToP2PDelay: 5
  352. },
  353. analytics: {
  354. // The Google Analytics Tracking ID:
  355. // googleAnalyticsTrackingId: 'your-tracking-id-UA-123456-1'
  356. // Matomo configuration:
  357. // matomoEndpoint: 'https://your-matomo-endpoint/',
  358. // matomoSiteID: '42',
  359. // The Amplitude APP Key:
  360. // amplitudeAPPKey: '<APP_KEY>'
  361. // Configuration for the rtcstats server:
  362. + // By enabling rtcstats server every time a conference is joined the rtcstats
  363. // module connects to the provided rtcstatsEndpoint and sends statistics regarding
  364. // PeerConnection states along with getStats metrics polled at the specified
  365. // interval.
  366. // rtcstatsEnabled: true,
  367. // In order to enable rtcstats one needs to provide a endpoint url.
  368. // rtcstatsEndpoint: wss://rtcstats-server-pilot.jitsi.net/,
  369. // The interval at which rtcstats will poll getStats, defaults to 1000ms.
  370. // If the value is set to 0 getStats won't be polled and the rtcstats client
  371. // will only send data related to RTCPeerConnection events.
  372. // rtcstatsPolIInterval: 1000
  373. // Array of script URLs to load as lib-jitsi-meet "analytics handlers".
  374. // scriptURLs: [
  375. // "libs/analytics-ga.min.js", // google-analytics
  376. // "https://example.com/my-custom-analytics.js"
  377. // ],
  378. },
  379. // Information about the jitsi-meet instance we are connecting to, including
  380. // the user region as seen by the server.
  381. deploymentInfo: {
  382. // shard: "shard1",
  383. // region: "europe",
  384. // userRegion: "asia"
  385. },
  386. // Decides whether the start/stop recording audio notifications should play on record.
  387. // disableRecordAudioNotification: false,
  388. // Information for the chrome extension banner
  389. // chromeExtensionBanner: {
  390. // // The chrome extension to be installed address
  391. // url: 'https://chrome.google.com/webstore/detail/jitsi-meetings/kglhbbefdnlheedjiejgomgmfplipfeb',
  392. // // Extensions info which allows checking if they are installed or not
  393. // chromeExtensionsInfo: [
  394. // {
  395. // id: 'kglhbbefdnlheedjiejgomgmfplipfeb',
  396. // path: 'jitsi-logo-48x48.png'
  397. // }
  398. // ]
  399. // },
  400. // Local Recording
  401. //
  402. // localRecording: {
  403. // Enables local recording.
  404. // Additionally, 'localrecording' (all lowercase) needs to be added to
  405. // TOOLBAR_BUTTONS in interface_config.js for the Local Recording
  406. // button to show up on the toolbar.
  407. //
  408. // enabled: true,
  409. //
  410. // The recording format, can be one of 'ogg', 'flac' or 'wav'.
  411. // format: 'flac'
  412. //
  413. // },
  414. // Options related to end-to-end (participant to participant) ping.
  415. // e2eping: {
  416. // // The interval in milliseconds at which pings will be sent.
  417. // // Defaults to 10000, set to <= 0 to disable.
  418. // pingInterval: 10000,
  419. //
  420. // // The interval in milliseconds at which analytics events
  421. // // with the measured RTT will be sent. Defaults to 60000, set
  422. // // to <= 0 to disable.
  423. // analyticsInterval: 60000,
  424. // },
  425. // If set, will attempt to use the provided video input device label when
  426. // triggering a screenshare, instead of proceeding through the normal flow
  427. // for obtaining a desktop stream.
  428. // NOTE: This option is experimental and is currently intended for internal
  429. // use only.
  430. // _desktopSharingSourceDevice: 'sample-id-or-label',
  431. // If true, any checks to handoff to another application will be prevented
  432. // and instead the app will continue to display in the current browser.
  433. // disableDeepLinking: false,
  434. // A property to disable the right click context menu for localVideo
  435. // the menu has option to flip the locally seen video for local presentations
  436. // disableLocalVideoFlip: false,
  437. // Mainly privacy related settings
  438. // Disables all invite functions from the app (share, invite, dial out...etc)
  439. // disableInviteFunctions: true,
  440. // Disables storing the room name to the recents list
  441. // doNotStoreRoom: true,
  442. // Deployment specific URLs.
  443. // deploymentUrls: {
  444. // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
  445. // // user documentation.
  446. // userDocumentationURL: 'https://docs.example.com/video-meetings.html',
  447. // // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
  448. // // to the specified URL for an app download page.
  449. // downloadAppsUrl: 'https://docs.example.com/our-apps.html'
  450. // },
  451. // Options related to the remote participant menu.
  452. // remoteVideoMenu: {
  453. // // If set to true the 'Kick out' button will be disabled.
  454. // disableKick: true
  455. // },
  456. // If set to true all muting operations of remote participants will be disabled.
  457. // disableRemoteMute: true,
  458. /**
  459. External API url used to receive branding specific information.
  460. If there is no url set or there are missing fields, the defaults are applied.
  461. None of the fields are mandatory and the response must have the shape:
  462. {
  463. // The hex value for the colour used as background
  464. backgroundColor: '#fff',
  465. // The url for the image used as background
  466. backgroundImageUrl: 'https://example.com/background-img.png',
  467. // The anchor url used when clicking the logo image
  468. logoClickUrl: 'https://example-company.org',
  469. // The url used for the image used as logo
  470. logoImageUrl: 'https://example.com/logo-img.png'
  471. }
  472. */
  473. // brandingDataUrl: '',
  474. // The URL of the moderated rooms microservice, if available. If it
  475. // is present, a link to the service will be rendered on the welcome page,
  476. // otherwise the app doesn't render it.
  477. // moderatedRoomServiceUrl: 'https://moderated.jitsi-meet.example.com',
  478. // List of undocumented settings used in jitsi-meet
  479. /**
  480. _immediateReloadThreshold
  481. autoRecord
  482. autoRecordToken
  483. debug
  484. debugAudioLevels
  485. deploymentInfo
  486. dialInConfCodeUrl
  487. dialInNumbersUrl
  488. dialOutAuthUrl
  489. dialOutCodesUrl
  490. disableRemoteControl
  491. displayJids
  492. etherpad_base
  493. externalConnectUrl
  494. firefox_fake_device
  495. googleApiApplicationClientID
  496. iAmRecorder
  497. iAmSipGateway
  498. microsoftApiApplicationClientID
  499. peopleSearchQueryTypes
  500. peopleSearchUrl
  501. requireDisplayName
  502. tokenAuthUrl
  503. */
  504. // List of undocumented settings used in lib-jitsi-meet
  505. /**
  506. _peerConnStatusOutOfLastNTimeout
  507. _peerConnStatusRtcMuteTimeout
  508. abTesting
  509. avgRtpStatsN
  510. callStatsConfIDNamespace
  511. callStatsCustomScriptUrl
  512. desktopSharingSources
  513. disableAEC
  514. disableAGC
  515. disableAP
  516. disableHPF
  517. disableNS
  518. enableLipSync
  519. enableTalkWhileMuted
  520. forceJVB121Ratio
  521. hiddenDomain
  522. ignoreStartMuted
  523. nick
  524. startBitrate
  525. */
  526. // Allow all above example options to include a trailing comma and
  527. // prevent fear when commenting out the last value.
  528. makeJsonParserHappy: 'even if last key had a trailing comma'
  529. // no configuration value should follow this line.
  530. };
  531. /* eslint-enable no-unused-vars, no-var */