Advertisement
Guest User

e-konf.xxxx.pl-config.js

a guest
Dec 14th, 2020
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.39 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: 'e-konf.waw.xxxxx.pl',
  10.  
  11. // When using authentication, domain for guest users.
  12. anonymousdomain: 'guest.e-konf.waw.xxxx.pl',
  13.  
  14. // Domain for authenticated users. Defaults to <domain>.
  15. // authdomain: 'e-konf.waw.xxxx.pl',
  16.  
  17. // Call control component (Jigasi).
  18. // call_control: 'callcontrol.e-konf.waw.xxxxx.pl',
  19.  
  20. // Focus component domain. Defaults to focus.<domain>.
  21. // focus: 'focus.e-konf.waw.xxxx.pl',
  22.  
  23. // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
  24. muc: 'conference.<!--# echo var="subdomain" default="" -->e-konf.waw.xxxx.pl'
  25. },
  26.  
  27. // BOSH URL. FIXME: use XEP-0156 to discover it.
  28. bosh: '//e-konf.waw.xxxxx.pl/http-bind',
  29.  
  30. // Websocket URL
  31. // websocket: 'wss://e-konf.waw.xxxx.pl/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.e-konf.waw.xxxxx.pl',
  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://e-konf.waw.xxxx.pl/static/oauth.html'
  197. // redirectURI:
  198. // 'https://e-konf.waw.xxxxx.pl/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.  
  298. // Disables or enables RTX (RFC 4588) (defaults to false).
  299. // disableRtx: false,
  300.  
  301. // Disables or enables TCC (the default is in Jicofo and set to true)
  302. // (draft-holmer-rmcat-transport-wide-cc-extensions-01). This setting
  303. // affects congestion control, it practically enables send-side bandwidth
  304. // estimations.
  305. // enableTcc: true,
  306.  
  307. // Disables or enables REMB (the default is in Jicofo and set to false)
  308. // (draft-alvestrand-rmcat-remb-03). This setting affects congestion
  309. // control, it practically enables recv-side bandwidth estimations. When
  310. // both TCC and REMB are enabled, TCC takes precedence. When both are
  311. // disabled, then bandwidth estimations are disabled.
  312. // enableRemb: false,
  313.  
  314. // Enables ICE restart logic in LJM and displays the page reload overlay on
  315. // ICE failure. Current disabled by default because it's causing issues with
  316. // signaling when Octo is enabled. Also when we do an "ICE restart"(which is
  317. // not a real ICE restart), the client maintains the TCC sequence number
  318. // counter, but the bridge resets it. The bridge sends media packets with
  319. // TCC sequence numbers starting from 0.
  320. // enableIceRestart: false,
  321.  
  322. // Defines the minimum number of participants to start a call (the default
  323. // is set in Jicofo and set to 2).
  324. // minParticipants: 2,
  325.  
  326. // Use TURN/UDP servers for the jitsi-videobridge connection (by default
  327. // we filter out TURN/UDP because it is usually not needed since the
  328. // bridge itself is reachable via UDP)
  329. // useTurnUdp: false
  330.  
  331. // Enables / disables a data communication channel with the Videobridge.
  332. // Values can be 'datachannel', 'websocket', true (treat it as
  333. // 'datachannel'), undefined (treat it as 'datachannel') and false (don't
  334. // open any channel).
  335. // openBridgeChannel: true,
  336. openBridgeChannel: 'websocket',
  337.  
  338.  
  339. // UI
  340. //
  341.  
  342. // Hides lobby button
  343. // hideLobbyButton: false,
  344.  
  345. // Require users to always specify a display name.
  346. // requireDisplayName: true,
  347.  
  348. // Whether to use a welcome page or not. In case it's false a random room
  349. // will be joined when no room is specified.
  350. enableWelcomePage: true,
  351.  
  352. // Enabling the close page will ignore the welcome page redirection when
  353. // a call is hangup.
  354. // enableClosePage: false,
  355.  
  356. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  357. // disable1On1Mode: false,
  358.  
  359. // Default language for the user interface.
  360. // defaultLanguage: 'en',
  361.  
  362. // If true all users without a token will be considered guests and all users
  363. // with token will be considered non-guests. Only guests will be allowed to
  364. // edit their profile.
  365. enableUserRolesBasedOnToken: false,
  366.  
  367. // Whether or not some features are checked based on token.
  368. // enableFeaturesBasedOnToken: false,
  369.  
  370. // Enable lock room for all moderators, even when userRolesBasedOnToken is enabled and participants are guests.
  371. // lockRoomGuestEnabled: false,
  372.  
  373. // When enabled the password used for locking a room is restricted to up to the number of digits specified
  374. // roomPasswordNumberOfDigits: 10,
  375. // default: roomPasswordNumberOfDigits: false,
  376.  
  377. // Message to show the users. Example: 'The service will be down for
  378. // maintenance at 01:00 AM GMT,
  379. // noticeMessage: '',
  380.  
  381. // Enables calendar integration, depends on googleApiApplicationClientID
  382. // and microsoftApiApplicationClientID
  383. // enableCalendarIntegration: false,
  384.  
  385. // When 'true', it shows an intermediate page before joining, where the user can configure their devices.
  386. // prejoinPageEnabled: false,
  387.  
  388. // If true, shows the unsafe room name warning label when a room name is
  389. // deemed unsafe (due to the simplicity in the name) and a password is not
  390. // set or the lobby is not enabled.
  391. // enableInsecureRoomNameWarning: false,
  392.  
  393. // Whether to automatically copy invitation URL after creating a room.
  394. // Document should be focused for this option to work
  395. // enableAutomaticUrlCopy: false,
  396.  
  397. // Stats
  398. //
  399.  
  400. // Whether to enable stats collection or not in the TraceablePeerConnection.
  401. // This can be useful for debugging purposes (post-processing/analysis of
  402. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  403. // estimation tests.
  404. // gatherStats: false,
  405.  
  406. // The interval at which PeerConnection.getStats() is called. Defaults to 10000
  407. // pcStatsInterval: 10000,
  408.  
  409. // To enable sending statistics to callstats.io you must provide the
  410. // Application ID and Secret.
  411. callStatsID: '677034633',
  412. callStatsSecret: 'jSpNPZUyd+Fr:tWPmSBlUmSlpREJoEX4wF+sXKydEeNz7+Z3jmH80BOw=',
  413.  
  414. // Enables sending participants' display names to callstats
  415. // enableDisplayNameInStats: false,
  416.  
  417. // Enables sending participants' emails (if available) to callstats and other analytics
  418. // enableEmailInStats: false,
  419.  
  420. // Privacy
  421. //
  422.  
  423. // If third party requests are disabled, no other server will be contacted.
  424. // This means avatars will be locally generated and callstats integration
  425. // will not function.
  426. // disableThirdPartyRequests: false,
  427.  
  428.  
  429. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  430. //
  431.  
  432. p2p: {
  433. // Enables peer to peer mode. When enabled the system will try to
  434. // establish a direct connection when there are exactly 2 participants
  435. // in the room. If that succeeds the conference will stop sending data
  436. // through the JVB and use the peer to peer connection instead. When a
  437. // 3rd participant joins the conference will be moved back to the JVB
  438. // connection.
  439. enabled: true,
  440.  
  441. // The STUN servers that will be used in the peer to peer connections
  442. stunServers: [
  443.  
  444. // { urls: 'stun:e-konf.xxxxx.pl:3478' },
  445. { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' }
  446. ]
  447.  
  448. // Sets the ICE transport policy for the p2p connection. At the time
  449. // of this writing the list of possible values are 'all' and 'relay',
  450. // but that is subject to change in the future. The enum is defined in
  451. // the WebRTC standard:
  452. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  453. // If not set, the effective value is 'all'.
  454. // iceTransportPolicy: 'all',
  455.  
  456. // If set to true, it will prefer to use H.264 for P2P calls (if H.264
  457. // is supported). This setting is deprecated, use preferredCodec instead.
  458. // preferH264: true
  459.  
  460. // Provides a way to set the video codec preference on the p2p connection. Acceptable
  461. // codec values are 'VP8', 'VP9' and 'H264'.
  462. // preferredCodec: 'H264',
  463.  
  464. // If set to true, disable H.264 video codec by stripping it out of the
  465. // SDP. This setting is deprecated, use disabledCodec instead.
  466. // disableH264: false,
  467.  
  468. // Provides a way to prevent a video codec from being negotiated on the p2p connection.
  469. // disabledCodec: '',
  470.  
  471. // How long we're going to wait, before going back to P2P after the 3rd
  472. // participant has left the conference (to filter out page reload).
  473. // backToP2PDelay: 5
  474. },
  475.  
  476. analytics: {
  477. // The Google Analytics Tracking ID:
  478. // googleAnalyticsTrackingId: 'your-tracking-id-UA-123456-1'
  479.  
  480. // Matomo configuration:
  481. // matomoEndpoint: 'https://your-matomo-endpoint/',
  482. // matomoSiteID: '42',
  483.  
  484. // The Amplitude APP Key:
  485. // amplitudeAPPKey: '<APP_KEY>'
  486.  
  487. // Configuration for the rtcstats server:
  488. // By enabling rtcstats server every time a conference is joined the rtcstats
  489. // module connects to the provided rtcstatsEndpoint and sends statistics regarding
  490. // PeerConnection states along with getStats metrics polled at the specified
  491. // interval.
  492. // rtcstatsEnabled: true,
  493.  
  494. // In order to enable rtcstats one needs to provide a endpoint url.
  495. // rtcstatsEndpoint: wss://rtcstats-server-pilot.jitsi.net/,
  496.  
  497. // The interval at which rtcstats will poll getStats, defaults to 1000ms.
  498. // If the value is set to 0 getStats won't be polled and the rtcstats client
  499. // will only send data related to RTCPeerConnection events.
  500. // rtcstatsPolIInterval: 1000
  501.  
  502. // Array of script URLs to load as lib-jitsi-meet "analytics handlers".
  503. // scriptURLs: [
  504. // "libs/analytics-ga.min.js", // google-analytics
  505. // "https://example.com/my-custom-analytics.js"
  506. // ],
  507. },
  508.  
  509. // Logs that should go be passed through the 'log' event if a handler is defined for it
  510. // apiLogLevels: ['warn', 'log', 'error', 'info', 'debug'],
  511.  
  512. // Information about the jitsi-meet instance we are connecting to, including
  513. // the user region as seen by the server.
  514. deploymentInfo: {
  515. // shard: "shard1",
  516. // region: "europe",
  517. // userRegion: "asia"
  518. },
  519.  
  520. // Decides whether the start/stop recording audio notifications should play on record.
  521. // disableRecordAudioNotification: false,
  522.  
  523. // Information for the chrome extension banner
  524. // chromeExtensionBanner: {
  525. // // The chrome extension to be installed address
  526. // url: 'https://chrome.google.com/webstore/detail/jitsi-meetings/kglhbbefdnlheedjiejgomgmfplipfeb',
  527.  
  528. // // Extensions info which allows checking if they are installed or not
  529. // chromeExtensionsInfo: [
  530. // {
  531. // id: 'kglhbbefdnlheedjiejgomgmfplipfeb',
  532. // path: 'jitsi-logo-48x48.png'
  533. // }
  534. // ]
  535. // },
  536.  
  537. // Local Recording
  538. //
  539.  
  540. // localRecording: {
  541. // Enables local recording.
  542. // Additionally, 'localrecording' (all lowercase) needs to be added to
  543. // TOOLBAR_BUTTONS in interface_config.js for the Local Recording
  544. // button to show up on the toolbar.
  545. //
  546. // enabled: true,
  547. //
  548.  
  549. // The recording format, can be one of 'ogg', 'flac' or 'wav'.
  550. // format: 'flac'
  551. //
  552.  
  553. // },
  554.  
  555. // Options related to end-to-end (participant to participant) ping.
  556. // e2eping: {
  557. // // The interval in milliseconds at which pings will be sent.
  558. // // Defaults to 10000, set to <= 0 to disable.
  559. // pingInterval: 10000,
  560. //
  561. // // The interval in milliseconds at which analytics events
  562. // // with the measured RTT will be sent. Defaults to 60000, set
  563. // // to <= 0 to disable.
  564. // analyticsInterval: 60000,
  565. // },
  566.  
  567. // If set, will attempt to use the provided video input device label when
  568. // triggering a screenshare, instead of proceeding through the normal flow
  569. // for obtaining a desktop stream.
  570. // NOTE: This option is experimental and is currently intended for internal
  571. // use only.
  572. // _desktopSharingSourceDevice: 'sample-id-or-label',
  573.  
  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.  
  578. // A property to disable the right click context menu for localVideo
  579. // the menu has option to flip the locally seen video for local presentations
  580. // disableLocalVideoFlip: false,
  581.  
  582. // Mainly privacy related settings
  583.  
  584. // Disables all invite functions from the app (share, invite, dial out...etc)
  585. // disableInviteFunctions: true,
  586.  
  587. // Disables storing the room name to the recents list
  588. // doNotStoreRoom: true,
  589.  
  590. // Deployment specific URLs.
  591. // deploymentUrls: {
  592. // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
  593. // // user documentation.
  594. // userDocumentationURL: 'https://docs.example.com/video-meetings.html',
  595. // // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
  596. // // to the specified URL for an app download page.
  597. // downloadAppsUrl: 'https://docs.example.com/our-apps.html'
  598. // },
  599.  
  600. // Options related to the remote participant menu.
  601. // remoteVideoMenu: {
  602. // // If set to true the 'Kick out' button will be disabled.
  603. // disableKick: true
  604. // },
  605.  
  606. // If set to true all muting operations of remote participants will be disabled.
  607. // disableRemoteMute: true,
  608.  
  609. /**
  610. External API url used to receive branding specific information.
  611. If there is no url set or there are missing fields, the defaults are applied.
  612. None of the fields are mandatory and the response must have the shape:
  613. {
  614. // The hex value for the colour used as background
  615. backgroundColor: '#fff',
  616. // The url for the image used as background
  617. backgroundImageUrl: 'https://example.com/background-img.png',
  618. // The anchor url used when clicking the logo image
  619. logoClickUrl: 'https://example-company.org',
  620. // The url used for the image used as logo
  621. logoImageUrl: 'https://example.com/logo-img.png'
  622. }
  623. */
  624. // brandingDataUrl: '',
  625.  
  626. // The URL of the moderated rooms microservice, if available. If it
  627. // is present, a link to the service will be rendered on the welcome page,
  628. // otherwise the app doesn't render it.
  629. // moderatedRoomServiceUrl: 'https://moderated.e-konf.waw.xxxx.pl',
  630.  
  631. // List of undocumented settings used in jitsi-meet
  632. /**
  633. _immediateReloadThreshold
  634. debug
  635. debugAudioLevels
  636. deploymentInfo
  637. dialInConfCodeUrl
  638. dialInNumbersUrl
  639. dialOutAuthUrl
  640. dialOutCodesUrl
  641. disableRemoteControl
  642. displayJids
  643. etherpad_base
  644. externalConnectUrl
  645. firefox_fake_device
  646. googleApiApplicationClientID
  647. iAmRecorder
  648. iAmSipGateway
  649. microsoftApiApplicationClientID
  650. peopleSearchQueryTypes
  651. peopleSearchUrl
  652. requireDisplayName
  653. tokenAuthUrl
  654. */
  655.  
  656. /**
  657. * This property can be used to alter the generated meeting invite links (in combination with a branding domain
  658. * which is retrieved internally by jitsi meet) (e.g. https://meet.jit.si/someMeeting
  659. * can become https://brandedDomain/roomAlias)
  660. */
  661. // brandingRoomAlias: null,
  662.  
  663. // List of undocumented settings used in lib-jitsi-meet
  664. /**
  665. _peerConnStatusOutOfLastNTimeout
  666. _peerConnStatusRtcMuteTimeout
  667. abTesting
  668. avgRtpStatsN
  669. callStatsConfIDNamespace
  670. callStatsCustomScriptUrl
  671. desktopSharingSources
  672. disableAEC
  673. disableAGC
  674. disableAP
  675. disableHPF
  676. disableNS
  677. enableLipSync
  678. enableTalkWhileMuted
  679. forceJVB121Ratio
  680. hiddenDomain
  681. ignoreStartMuted
  682. nick
  683. startBitrate
  684. */
  685.  
  686.  
  687. // Allow all above example options to include a trailing comma and
  688. // prevent fear when commenting out the last value.
  689. makeJsonParserHappy: 'even if last key had a trailing comma'
  690.  
  691. // no configuration value should follow this line.
  692. };
  693.  
  694. /* eslint-enable no-unused-vars, no-var */
  695.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement