Advertisement
Guest User

Untitled

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