Advertisement
Guest User

Config.js

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