2017-10-12 23:02:29 +00:00
|
|
|
/* eslint-disable no-unused-vars, no-var */
|
2017-10-16 20:37:13 +00:00
|
|
|
|
|
|
|
var config = {
|
2017-08-07 11:51:07 +00:00
|
|
|
// Configuration
|
|
|
|
//
|
|
|
|
|
|
|
|
// Alternative location for the configuration.
|
2017-10-12 23:02:29 +00:00
|
|
|
// configLocation: './config.json',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Custom function which given the URL path should return a room name.
|
2017-10-12 23:02:29 +00:00
|
|
|
// getroomnode: function (path) { return 'someprefixpossiblybasedonpath'; },
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Connection
|
|
|
|
//
|
|
|
|
|
2013-12-16 11:22:23 +00:00
|
|
|
hosts: {
|
2017-08-07 11:51:07 +00:00
|
|
|
// XMPP domain.
|
2015-03-09 16:58:11 +00:00
|
|
|
domain: 'jitsi-meet.example.com',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// XMPP MUC domain. FIXME: use XEP-0030 to discover it.
|
2017-10-12 23:02:29 +00:00
|
|
|
muc: 'conference.jitsi-meet.example.com'
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// When using authentication, domain for guest users.
|
2017-10-12 23:02:29 +00:00
|
|
|
// anonymousdomain: 'guest.example.com',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Domain for authenticated users. Defaults to <domain>.
|
2017-10-12 23:02:29 +00:00
|
|
|
// authdomain: 'jitsi-meet.example.com',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Jirecon recording component domain.
|
2017-10-12 23:02:29 +00:00
|
|
|
// jirecon: 'jirecon.jitsi-meet.example.com',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Call control component (Jigasi).
|
2017-10-12 23:02:29 +00:00
|
|
|
// call_control: 'callcontrol.jitsi-meet.example.com',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Focus component domain. Defaults to focus.<domain>.
|
2017-10-12 23:02:29 +00:00
|
|
|
// focus: 'focus.jitsi-meet.example.com',
|
2013-12-16 11:22:23 +00:00
|
|
|
},
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// BOSH URL. FIXME: use XEP-0156 to discover it.
|
|
|
|
bosh: '//jitsi-meet.example.com/http-bind',
|
|
|
|
|
|
|
|
// The name of client node advertised in XEP-0115 'c' stanza
|
|
|
|
clientNode: 'http://jitsi.org/jitsimeet',
|
|
|
|
|
|
|
|
// The real JID of focus participant - can be overridden here
|
2017-10-12 23:02:29 +00:00
|
|
|
// focusUserJid: 'focus@auth.jitsi-meet.example.com',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Testing / experimental features.
|
|
|
|
//
|
|
|
|
|
2017-07-07 13:36:24 +00:00
|
|
|
testing: {
|
2017-08-07 11:51:07 +00:00
|
|
|
// Enables experimental simulcast support on Firefox.
|
2017-07-20 07:48:28 +00:00
|
|
|
enableFirefoxSimulcast: false,
|
2017-10-12 23:02:29 +00:00
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
// P2P test mode disables automatic switching to P2P when there are 2
|
|
|
|
// participants in the conference.
|
2017-10-12 23:02:29 +00:00
|
|
|
p2pTestMode: false
|
2018-03-07 15:23:04 +00:00
|
|
|
|
|
|
|
// Enables the test specific features consumed by jitsi-meet-torture
|
|
|
|
// testMode: false
|
2017-07-07 13:36:24 +00:00
|
|
|
},
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Disables ICE/UDP by filtering out local and remote UDP candidates in
|
|
|
|
// signalling.
|
2017-10-12 23:02:29 +00:00
|
|
|
// webrtcIceUdpDisable: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Disables ICE/TCP by filtering out local and remote TCP candidates in
|
|
|
|
// signalling.
|
2017-10-12 23:02:29 +00:00
|
|
|
// webrtcIceTcpDisable: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Media
|
|
|
|
//
|
|
|
|
|
|
|
|
// Audio
|
|
|
|
|
|
|
|
// Disable measuring of audio levels.
|
2017-10-12 23:02:29 +00:00
|
|
|
// disableAudioLevels: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Start the conference in audio only mode (no video is being received nor
|
|
|
|
// sent).
|
2017-10-12 23:02:29 +00:00
|
|
|
// startAudioOnly: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Every participant after the Nth will start audio muted.
|
2017-10-12 23:02:29 +00:00
|
|
|
// startAudioMuted: 10,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Start calls with audio muted. Unlike the option above, this one is only
|
|
|
|
// applied locally. FIXME: having these 2 options is confusing.
|
2017-10-12 23:02:29 +00:00
|
|
|
// startWithAudioMuted: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Video
|
|
|
|
|
|
|
|
// Sets the preferred resolution (height) for local video. Defaults to 720.
|
2017-10-12 23:02:29 +00:00
|
|
|
// resolution: 720,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2017-11-01 00:08:07 +00:00
|
|
|
// w3c spec-compliant video constraints to use for video capture. Currently
|
|
|
|
// used by browsers that return true from lib-jitsi-meet's
|
2018-01-19 17:50:03 +00:00
|
|
|
// util#browser#usesNewGumFlow. The constraints are independency from
|
2017-11-01 00:08:07 +00:00
|
|
|
// this config's resolution value. Defaults to requesting an ideal aspect
|
|
|
|
// ratio of 16:9 with an ideal resolution of 1080p.
|
|
|
|
// constraints: {
|
|
|
|
// video: {
|
|
|
|
// aspectRatio: 16 / 9,
|
|
|
|
// height: {
|
|
|
|
// ideal: 1080,
|
|
|
|
// max: 1080,
|
|
|
|
// min: 240
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
// Enable / disable simulcast support.
|
2017-10-12 23:02:29 +00:00
|
|
|
// disableSimulcast: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Suspend sending video if bandwidth estimation is too low. This may cause
|
|
|
|
// problems with audio playback. Disabled until these are fixed.
|
|
|
|
disableSuspendVideo: true,
|
|
|
|
|
|
|
|
// Every participant after the Nth will start video muted.
|
2017-10-12 23:02:29 +00:00
|
|
|
// startVideoMuted: 10,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Start calls with video muted. Unlike the option above, this one is only
|
|
|
|
// applied locally. FIXME: having these 2 options is confusing.
|
2017-10-12 23:02:29 +00:00
|
|
|
// startWithVideoMuted: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// If set to true, prefer to use the H.264 video codec (if supported).
|
|
|
|
// Note that it's not recommended to do this because simulcast is not
|
|
|
|
// supported when using H.264. For 1-to-1 calls this setting is enabled by
|
|
|
|
// default and can be toggled in the p2p section.
|
2017-10-12 23:02:29 +00:00
|
|
|
// preferH264: true,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2017-10-12 22:42:55 +00:00
|
|
|
// If set to true, disable H.264 video codec by stripping it out of the
|
|
|
|
// SDP.
|
2017-10-12 23:02:29 +00:00
|
|
|
// disableH264: false,
|
2017-10-12 22:42:55 +00:00
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
// Desktop sharing
|
|
|
|
|
|
|
|
// Enable / disable desktop sharing
|
2017-10-12 23:02:29 +00:00
|
|
|
// disableDesktopSharing: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2015-09-02 22:29:53 +00:00
|
|
|
// The ID of the jidesha extension for Chrome.
|
2017-01-19 23:29:48 +00:00
|
|
|
desktopSharingChromeExtId: null,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2017-01-19 23:29:48 +00:00
|
|
|
// Whether desktop sharing should be disabled on Chrome.
|
|
|
|
desktopSharingChromeDisabled: true,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2015-09-02 22:29:53 +00:00
|
|
|
// The media sources to use when using screen sharing with the Chrome
|
|
|
|
// extension.
|
2017-10-12 23:02:29 +00:00
|
|
|
desktopSharingChromeSources: [ 'screen', 'window', 'tab' ],
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2015-09-02 22:29:53 +00:00
|
|
|
// Required version of Chrome extension
|
|
|
|
desktopSharingChromeMinExtVersion: '0.1',
|
|
|
|
|
|
|
|
// Whether desktop sharing should be disabled on Firefox.
|
2017-05-15 11:15:00 +00:00
|
|
|
desktopSharingFirefoxDisabled: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2018-02-20 21:23:41 +00:00
|
|
|
// Optional desktop sharing frame rate options. Default value: min:5, max:5.
|
|
|
|
// desktopSharingFrameRate: {
|
|
|
|
// min: 5,
|
|
|
|
// max: 5
|
|
|
|
// },
|
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
// Try to start calls with screen-sharing instead of camera video.
|
2017-10-12 23:02:29 +00:00
|
|
|
// startScreenSharing: false,
|
2015-09-21 16:28:49 +00:00
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
// Recording
|
2017-05-19 00:40:14 +00:00
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
// Whether to enable recording or not.
|
2017-10-12 23:02:29 +00:00
|
|
|
// enableRecording: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Type for recording: one of jibri or jirecon.
|
2017-10-12 23:02:29 +00:00
|
|
|
// recordingType: 'jibri',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Misc
|
|
|
|
|
|
|
|
// Default value for the channel "last N" attribute. -1 for unlimited.
|
|
|
|
channelLastN: -1,
|
|
|
|
|
|
|
|
// Disables or enables RTX (RFC 4588) (defaults to false).
|
2017-10-12 23:02:29 +00:00
|
|
|
// disableRtx: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2018-03-30 20:32:53 +00:00
|
|
|
// Disables or enables TCC (the default is in Jicofo and set to true)
|
|
|
|
// (draft-holmer-rmcat-transport-wide-cc-extensions-01). This setting
|
|
|
|
// affects congestion control, it practically enables send-side bandwidth
|
|
|
|
// estimations.
|
|
|
|
// enableTcc: true,
|
|
|
|
|
|
|
|
// Disables or enables REMB (the default is in Jicofo and set to false)
|
|
|
|
// (draft-alvestrand-rmcat-remb-03). This setting affects congestion
|
|
|
|
// control, it practically enables recv-side bandwidth estimations. When
|
|
|
|
// both TCC and REMB are enabled, TCC takes precedence. When both are
|
|
|
|
// disabled, then bandwidth estimations are disabled.
|
|
|
|
// enableRemb: false,
|
|
|
|
|
|
|
|
// Defines the minimum number of participants to start a call (the default
|
|
|
|
// is set in Jicofo and set to 2).
|
|
|
|
// minParticipants: 2,
|
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
// Use XEP-0215 to fetch STUN and TURN servers.
|
2017-10-12 23:02:29 +00:00
|
|
|
// useStunTurn: true,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Enable IPv6 support.
|
2017-10-12 23:02:29 +00:00
|
|
|
// useIPv6: true,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Enables / disables a data communication channel with the Videobridge.
|
|
|
|
// Values can be 'datachannel', 'websocket', true (treat it as
|
|
|
|
// 'datachannel'), undefined (treat it as 'datachannel') and false (don't
|
|
|
|
// open any channel).
|
2017-10-12 23:02:29 +00:00
|
|
|
// openBridgeChannel: true,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
// UI
|
|
|
|
//
|
|
|
|
|
|
|
|
// Use display name as XMPP nickname.
|
2017-10-12 23:02:29 +00:00
|
|
|
// useNicks: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Require users to always specify a display name.
|
2017-10-12 23:02:29 +00:00
|
|
|
// requireDisplayName: true,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Whether to use a welcome page or not. In case it's false a random room
|
|
|
|
// will be joined when no room is specified.
|
2014-11-12 08:35:44 +00:00
|
|
|
enableWelcomePage: true,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Enabling the close page will ignore the welcome page redirection when
|
|
|
|
// a call is hangup.
|
2017-10-12 23:02:29 +00:00
|
|
|
// enableClosePage: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Disable hiding of remote thumbnails when in a 1-on-1 conference call.
|
2017-10-12 23:02:29 +00:00
|
|
|
// disable1On1Mode: false,
|
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
// The minimum value a video's height (or width, whichever is smaller) needs
|
2017-05-17 19:57:22 +00:00
|
|
|
// to be in order to be considered high-definition.
|
|
|
|
minHDHeight: 540,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Default language for the user interface.
|
2017-10-12 23:02:29 +00:00
|
|
|
// defaultLanguage: 'en',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// If true all users without a token will be considered guests and all users
|
2016-09-13 21:50:10 +00:00
|
|
|
// with token will be considered non-guests. Only guests will be allowed to
|
|
|
|
// edit their profile.
|
2016-12-12 16:37:36 +00:00
|
|
|
enableUserRolesBasedOnToken: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Message to show the users. Example: 'The service will be down for
|
|
|
|
// maintenance at 01:00 AM GMT,
|
2017-10-12 23:02:29 +00:00
|
|
|
// noticeMessage: '',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Stats
|
|
|
|
//
|
|
|
|
|
2018-03-05 17:12:39 +00:00
|
|
|
// Whether to enable stats collection or not in the TraceablePeerConnection.
|
|
|
|
// This can be useful for debugging purposes (post-processing/analysis of
|
|
|
|
// the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
|
|
|
|
// estimation tests.
|
|
|
|
// gatherStats: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// To enable sending statistics to callstats.io you must provide the
|
|
|
|
// Application ID and Secret.
|
2017-10-12 23:02:29 +00:00
|
|
|
// callStatsID: '',
|
|
|
|
// callStatsSecret: '',
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2017-10-05 18:28:19 +00:00
|
|
|
// enables callstatsUsername to be reported as statsId and used
|
|
|
|
// by callstats as repoted remote id
|
|
|
|
// enableStatsID: false
|
|
|
|
|
|
|
|
// enables sending participants display name to callstats
|
|
|
|
// enableDisplayNameInStats: false
|
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Privacy
|
|
|
|
//
|
|
|
|
|
|
|
|
// If third party requests are disabled, no other server will be contacted.
|
|
|
|
// This means avatars will be locally generated and callstats integration
|
|
|
|
// will not function.
|
2017-10-12 23:02:29 +00:00
|
|
|
// disableThirdPartyRequests: false,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
|
2017-06-28 09:59:46 +00:00
|
|
|
// Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
|
2017-08-07 11:51:07 +00:00
|
|
|
//
|
|
|
|
|
2017-06-28 09:59:46 +00:00
|
|
|
p2p: {
|
2017-08-07 11:51:07 +00:00
|
|
|
// Enables peer to peer mode. When enabled the system will try to
|
|
|
|
// establish a direct connection when there are exactly 2 participants
|
|
|
|
// in the room. If that succeeds the conference will stop sending data
|
|
|
|
// through the JVB and use the peer to peer connection instead. When a
|
|
|
|
// 3rd participant joins the conference will be moved back to the JVB
|
2017-06-28 09:59:46 +00:00
|
|
|
// connection.
|
|
|
|
enabled: true,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
|
|
|
// Use XEP-0215 to fetch STUN and TURN servers.
|
2017-10-12 23:02:29 +00:00
|
|
|
// useStunTurn: true,
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2017-06-28 09:59:46 +00:00
|
|
|
// The STUN servers that will be used in the peer to peer connections
|
|
|
|
stunServers: [
|
2017-10-12 23:02:29 +00:00
|
|
|
{ urls: 'stun:stun.l.google.com:19302' },
|
|
|
|
{ urls: 'stun:stun1.l.google.com:19302' },
|
|
|
|
{ urls: 'stun:stun2.l.google.com:19302' }
|
2017-06-28 09:59:46 +00:00
|
|
|
],
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2017-11-22 16:39:12 +00:00
|
|
|
// Sets the ICE transport policy for the p2p connection. At the time
|
|
|
|
// of this writing the list of possible values are 'all' and 'relay',
|
|
|
|
// but that is subject to change in the future. The enum is defined in
|
|
|
|
// the WebRTC standard:
|
|
|
|
// https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
|
|
|
|
// If not set, the effective value is 'all'.
|
|
|
|
// iceTransportPolicy: 'all',
|
|
|
|
|
2017-06-28 09:59:46 +00:00
|
|
|
// If set to true, it will prefer to use H.264 for P2P calls (if H.264
|
|
|
|
// is supported).
|
2017-06-29 08:48:25 +00:00
|
|
|
preferH264: true
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2017-10-12 22:42:55 +00:00
|
|
|
// If set to true, disable H.264 video codec by stripping it out of the
|
|
|
|
// SDP.
|
2017-10-12 23:02:29 +00:00
|
|
|
// disableH264: false,
|
2017-10-12 22:42:55 +00:00
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
// How long we're going to wait, before going back to P2P after the 3rd
|
|
|
|
// participant has left the conference (to filter out page reload).
|
2017-10-12 23:02:29 +00:00
|
|
|
// backToP2PDelay: 5
|
2017-06-30 18:37:11 +00:00
|
|
|
},
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2018-01-03 21:24:07 +00:00
|
|
|
// A list of scripts to load as lib-jitsi-meet "analytics handlers".
|
|
|
|
// analyticsScriptUrls: [
|
|
|
|
// "libs/analytics-ga.js", // google-analytics
|
|
|
|
// "https://example.com/my-custom-analytics.js"
|
|
|
|
// ],
|
2017-08-07 11:51:07 +00:00
|
|
|
|
2018-02-12 19:36:10 +00:00
|
|
|
// The Google Analytics Tracking ID
|
|
|
|
// googleAnalyticsTrackingId = 'your-tracking-id-here-UA-123456-1',
|
|
|
|
|
2017-08-07 11:51:07 +00:00
|
|
|
// Information about the jitsi-meet instance we are connecting to, including
|
|
|
|
// the user region as seen by the server.
|
2017-06-30 18:37:11 +00:00
|
|
|
deploymentInfo: {
|
2017-10-12 23:02:29 +00:00
|
|
|
// shard: "shard1",
|
|
|
|
// region: "europe",
|
|
|
|
// userRegion: "asia"
|
2017-06-28 09:59:46 +00:00
|
|
|
}
|
2017-12-12 19:16:55 +00:00
|
|
|
|
|
|
|
// List of undocumented settings used in jitsi-meet
|
|
|
|
/**
|
|
|
|
alwaysVisibleToolbar
|
|
|
|
autoRecord
|
|
|
|
autoRecordToken
|
|
|
|
debug
|
|
|
|
debugAudioLevels
|
|
|
|
deploymentInfo
|
|
|
|
dialInConfCodeUrl
|
|
|
|
dialInNumbersUrl
|
|
|
|
dialOutAuthUrl
|
|
|
|
dialOutCodesUrl
|
|
|
|
disableRemoteControl
|
|
|
|
displayJids
|
|
|
|
enableLocalVideoFlip
|
|
|
|
etherpad_base
|
|
|
|
externalConnectUrl
|
|
|
|
firefox_fake_device
|
2018-03-21 18:26:52 +00:00
|
|
|
googleApiApplicationClientID
|
2017-12-12 19:16:55 +00:00
|
|
|
iAmRecorder
|
|
|
|
iAmSipGateway
|
|
|
|
peopleSearchQueryTypes
|
|
|
|
peopleSearchUrl
|
|
|
|
requireDisplayName
|
|
|
|
tokenAuthUrl
|
|
|
|
*/
|
|
|
|
|
|
|
|
// List of undocumented settings used in lib-jitsi-meet
|
|
|
|
/**
|
|
|
|
_peerConnStatusOutOfLastNTimeout
|
|
|
|
_peerConnStatusRtcMuteTimeout
|
|
|
|
abTesting
|
|
|
|
avgRtpStatsN
|
|
|
|
callStatsConfIDNamespace
|
|
|
|
callStatsCustomScriptUrl
|
|
|
|
desktopSharingSources
|
|
|
|
disableAEC
|
|
|
|
disableAGC
|
|
|
|
disableAP
|
|
|
|
disableHPF
|
|
|
|
disableNS
|
|
|
|
enableLipSync
|
|
|
|
enableTalkWhileMuted
|
|
|
|
forceJVB121Ratio
|
|
|
|
hiddenDomain
|
|
|
|
ignoreStartMuted
|
|
|
|
nick
|
|
|
|
startBitrate
|
|
|
|
*/
|
2014-07-01 14:02:34 +00:00
|
|
|
};
|
2017-10-16 20:37:13 +00:00
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
/* eslint-enable no-unused-vars, no-var */
|