Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194
  1. /* eslint-disable no-unused-vars, no-var */
  2. var config = {
  3. // Connection
  4. //
  5. hosts: {
  6. // XMPP domain.
  7. domain: 'jitsi-meet.example.com',
  8. // When using authentication, domain for guest users.
  9. // anonymousdomain: 'guest.example.com',
  10. // Domain for authenticated users. Defaults to <domain>.
  11. // authdomain: 'jitsi-meet.example.com',
  12. // Focus component domain. Defaults to focus.<domain>.
  13. // focus: 'focus.jitsi-meet.example.com',
  14. // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
  15. muc: 'conference.jitsi-meet.example.com'
  16. },
  17. // BOSH URL. FIXME: use XEP-0156 to discover it.
  18. bosh: '//jitsi-meet.example.com/http-bind',
  19. // Websocket URL
  20. // websocket: 'wss://jitsi-meet.example.com/xmpp-websocket',
  21. // The real JID of focus participant - can be overridden here
  22. // Do not change username - FIXME: Make focus username configurable
  23. // https://github.com/jitsi/jitsi-meet/issues/7376
  24. // focusUserJid: 'focus@auth.jitsi-meet.example.com',
  25. // Testing / experimental features.
  26. //
  27. testing: {
  28. // Disables the End to End Encryption feature. Useful for debugging
  29. // issues related to insertable streams.
  30. // disableE2EE: false,
  31. // Enables/disables thumbnail reordering in the filmstrip. It is enabled by default unless explicitly
  32. // disabled by the below option.
  33. // enableThumbnailReordering: true,
  34. // Enables XMPP WebSocket (as opposed to BOSH) for the given amount of users.
  35. // mobileXmppWsThreshold: 10 // enable XMPP WebSockets on mobile for 10% of the users
  36. // P2P test mode disables automatic switching to P2P when there are 2
  37. // participants in the conference.
  38. // p2pTestMode: false,
  39. // Enables the test specific features consumed by jitsi-meet-torture
  40. // testMode: false
  41. // Disables the auto-play behavior of *all* newly created video element.
  42. // This is useful when the client runs on a host with limited resources.
  43. // noAutoPlayVideo: false
  44. // Enable / disable 500 Kbps bitrate cap on desktop tracks. When enabled,
  45. // simulcast is turned off for the desktop share. If presenter is turned
  46. // on while screensharing is in progress, the max bitrate is automatically
  47. // adjusted to 2.5 Mbps. This takes a value between 0 and 1 which determines
  48. // the probability for this to be enabled. This setting has been deprecated.
  49. // desktopSharingFrameRate.max now determines whether simulcast will be enabled
  50. // or disabled for the screenshare.
  51. // capScreenshareBitrate: 1 // 0 to disable - deprecated.
  52. // Enable callstats only for a percentage of users.
  53. // This takes a value between 0 and 100 which determines the probability for
  54. // the callstats to be enabled.
  55. // callStatsThreshold: 5 // enable callstats for 5% of the users.
  56. },
  57. // Disables moderator indicators.
  58. // disableModeratorIndicator: false,
  59. // Disables the reactions feature.
  60. // disableReactions: true,
  61. // Disables polls feature.
  62. // disablePolls: false,
  63. // Disables ICE/UDP by filtering out local and remote UDP candidates in
  64. // signalling.
  65. // webrtcIceUdpDisable: false,
  66. // Disables ICE/TCP by filtering out local and remote TCP candidates in
  67. // signalling.
  68. // webrtcIceTcpDisable: false,
  69. // Media
  70. //
  71. // Enable unified plan implementation support on Chromium based browsers.
  72. // enableUnifiedOnChrome: false,
  73. // Audio
  74. // Disable measuring of audio levels.
  75. // disableAudioLevels: false,
  76. // audioLevelsInterval: 200,
  77. // Enabling this will run the lib-jitsi-meet no audio detection module which
  78. // will notify the user if the current selected microphone has no audio
  79. // input and will suggest another valid device if one is present.
  80. enableNoAudioDetection: true,
  81. // Enabling this will show a "Save Logs" link in the GSM popover that can be
  82. // used to collect debug information (XMPP IQs, SDP offer/answer cycles)
  83. // about the call.
  84. // enableSaveLogs: false,
  85. // Enabling this will hide the "Show More" link in the GSM popover that can be
  86. // used to display more statistics about the connection (IP, Port, protocol, etc).
  87. // disableShowMoreStats: true,
  88. // Enabling this will run the lib-jitsi-meet noise detection module which will
  89. // notify the user if there is noise, other than voice, coming from the current
  90. // selected microphone. The purpose it to let the user know that the input could
  91. // be potentially unpleasant for other meeting participants.
  92. enableNoisyMicDetection: true,
  93. // Start the conference in audio only mode (no video is being received nor
  94. // sent).
  95. // startAudioOnly: false,
  96. // Every participant after the Nth will start audio muted.
  97. // startAudioMuted: 10,
  98. // Start calls with audio muted. Unlike the option above, this one is only
  99. // applied locally. FIXME: having these 2 options is confusing.
  100. // startWithAudioMuted: false,
  101. // Enabling it (with #params) will disable local audio output of remote
  102. // participants and to enable it back a reload is needed.
  103. // startSilent: false
  104. // Enables support for opus-red (redundancy for Opus).
  105. // enableOpusRed: false,
  106. // Specify audio quality stereo and opusMaxAverageBitrate values in order to enable HD audio.
  107. // Beware, by doing so, you are disabling echo cancellation, noise suppression and AGC.
  108. // audioQuality: {
  109. // stereo: false,
  110. // opusMaxAverageBitrate: null // Value to fit the 6000 to 510000 range.
  111. // },
  112. // Video
  113. // Sets the preferred resolution (height) for local video. Defaults to 720.
  114. // resolution: 720,
  115. // Specifies whether the raised hand will hide when someone becomes a dominant speaker or not
  116. // disableRemoveRaisedHandOnFocus: false,
  117. // Specifies whether there will be a search field in speaker stats or not
  118. // disableSpeakerStatsSearch: false,
  119. // Specifies whether participants in speaker stats should be ordered or not, and with what priority
  120. // speakerStatsOrder: [
  121. // 'role', <- Moderators on top
  122. // 'name', <- Alphabetically by name
  123. // 'hasLeft', <- The ones that have left in the bottom
  124. // ] <- the order of the array elements determines priority
  125. // How many participants while in the tile view mode, before the receiving video quality is reduced from HD to SD.
  126. // Use -1 to disable.
  127. // maxFullResolutionParticipants: 2,
  128. // w3c spec-compliant video constraints to use for video capture. Currently
  129. // used by browsers that return true from lib-jitsi-meet's
  130. // util#browser#usesNewGumFlow. The constraints are independent from
  131. // this config's resolution value. Defaults to requesting an ideal
  132. // resolution of 720p.
  133. // constraints: {
  134. // video: {
  135. // height: {
  136. // ideal: 720,
  137. // max: 720,
  138. // min: 240
  139. // }
  140. // }
  141. // },
  142. // Enable / disable simulcast support.
  143. // disableSimulcast: false,
  144. // Enable / disable layer suspension. If enabled, endpoints whose HD layers are not in use will be suspended
  145. // (no longer sent) until they are requested again. This is enabled by default. This must be enabled for screen
  146. // sharing to work as expected on Chrome. Disabling this might result in low resolution screenshare being sent
  147. // by the client.
  148. // enableLayerSuspension: false,
  149. // Every participant after the Nth will start video muted.
  150. // startVideoMuted: 10,
  151. // Start calls with video muted. Unlike the option above, this one is only
  152. // applied locally. FIXME: having these 2 options is confusing.
  153. // startWithVideoMuted: false,
  154. // If set to true, prefer to use the H.264 video codec (if supported).
  155. // Note that it's not recommended to do this because simulcast is not
  156. // supported when using H.264. For 1-to-1 calls this setting is enabled by
  157. // default and can be toggled in the p2p section.
  158. // This option has been deprecated, use preferredCodec under videoQuality section instead.
  159. // preferH264: true,
  160. // If set to true, disable H.264 video codec by stripping it out of the
  161. // SDP.
  162. // disableH264: false,
  163. // Desktop sharing
  164. // Optional desktop sharing frame rate options. Default value: min:5, max:5.
  165. // desktopSharingFrameRate: {
  166. // min: 5,
  167. // max: 5
  168. // },
  169. // Try to start calls with screen-sharing instead of camera video.
  170. // startScreenSharing: false,
  171. // Recording
  172. // Whether to enable file recording or not.
  173. // fileRecordingsEnabled: false,
  174. // Enable the dropbox integration.
  175. // dropbox: {
  176. // appKey: '<APP_KEY>' // Specify your app key here.
  177. // // A URL to redirect the user to, after authenticating
  178. // // by default uses:
  179. // // 'https://jitsi-meet.example.com/static/oauth.html'
  180. // redirectURI:
  181. // 'https://jitsi-meet.example.com/subfolder/static/oauth.html'
  182. // },
  183. // When integrations like dropbox are enabled only that will be shown,
  184. // by enabling fileRecordingsServiceEnabled, we show both the integrations
  185. // and the generic recording service (its configuration and storage type
  186. // depends on jibri configuration)
  187. // fileRecordingsServiceEnabled: false,
  188. // Whether to show the possibility to share file recording with other people
  189. // (e.g. meeting participants), based on the actual implementation
  190. // on the backend.
  191. // fileRecordingsServiceSharingEnabled: false,
  192. // Whether to enable live streaming or not.
  193. // liveStreamingEnabled: false,
  194. // Transcription (in interface_config,
  195. // subtitles and buttons can be configured)
  196. // transcribingEnabled: false,
  197. // If true transcriber will use the application language.
  198. // The application language is either explicitly set by participants in their settings or automatically
  199. // detected based on the environment, e.g. if the app is opened in a chrome instance which is using french as its
  200. // default language then transcriptions for that participant will be in french.
  201. // Defaults to true.
  202. // transcribeWithAppLanguage: true,
  203. // Transcriber language. This settings will only work if "transcribeWithAppLanguage" is explicitly set to false.
  204. // Available languages can be found in
  205. // ./src/react/features/transcribing/transcriber-langs.json.
  206. // preferredTranscribeLanguage: 'en-US',
  207. // Enables automatic turning on captions when recording is started
  208. // autoCaptionOnRecord: false,
  209. // Misc
  210. // Default value for the channel "last N" attribute. -1 for unlimited.
  211. channelLastN: -1,
  212. // Connection indicators
  213. // connectionIndicators: {
  214. // autoHide: true,
  215. // autoHideTimeout: 5000,
  216. // disabled: false,
  217. // disableDetails: false,
  218. // inactiveDisabled: false
  219. // },
  220. // Provides a way for the lastN value to be controlled through the UI.
  221. // When startLastN is present, conference starts with a last-n value of startLastN and channelLastN
  222. // value will be used when the quality level is selected using "Manage Video Quality" slider.
  223. // startLastN: 1,
  224. // Provides a way to use different "last N" values based on the number of participants in the conference.
  225. // The keys in an Object represent number of participants and the values are "last N" to be used when number of
  226. // participants gets to or above the number.
  227. //
  228. // For the given example mapping, "last N" will be set to 20 as long as there are at least 5, but less than
  229. // 29 participants in the call and it will be lowered to 15 when the 30th participant joins. The 'channelLastN'
  230. // will be used as default until the first threshold is reached.
  231. //
  232. // lastNLimits: {
  233. // 5: 20,
  234. // 30: 15,
  235. // 50: 10,
  236. // 70: 5,
  237. // 90: 2
  238. // },
  239. // Provides a way to translate the legacy bridge signaling messages, 'LastNChangedEvent',
  240. // 'SelectedEndpointsChangedEvent' and 'ReceiverVideoConstraint' into the new 'ReceiverVideoConstraints' message
  241. // that invokes the new bandwidth allocation algorithm in the bridge which is described here
  242. // - https://github.com/jitsi/jitsi-videobridge/blob/master/doc/allocation.md.
  243. // useNewBandwidthAllocationStrategy: false,
  244. // Specify the settings for video quality optimizations on the client.
  245. // videoQuality: {
  246. // // Provides a way to prevent a video codec from being negotiated on the JVB connection. The codec specified
  247. // // here will be removed from the list of codecs present in the SDP answer generated by the client. If the
  248. // // same codec is specified for both the disabled and preferred option, the disable settings will prevail.
  249. // // Note that 'VP8' cannot be disabled since it's a mandatory codec, the setting will be ignored in this case.
  250. // disabledCodec: 'H264',
  251. //
  252. // // Provides a way to set a preferred video codec for the JVB connection. If 'H264' is specified here,
  253. // // simulcast will be automatically disabled since JVB doesn't support H264 simulcast yet. This will only
  254. // // rearrange the the preference order of the codecs in the SDP answer generated by the browser only if the
  255. // // preferred codec specified here is present. Please ensure that the JVB offers the specified codec for this
  256. // // to take effect.
  257. // preferredCodec: 'VP8',
  258. //
  259. // // Provides a way to enforce the preferred codec for the conference even when the conference has endpoints
  260. // // that do not support the preferred codec. For example, older versions of Safari do not support VP9 yet.
  261. // // This will result in Safari not being able to decode video from endpoints sending VP9 video.
  262. // // When set to false, the conference falls back to VP8 whenever there is an endpoint that doesn't support the
  263. // // preferred codec and goes back to the preferred codec when that endpoint leaves.
  264. // // enforcePreferredCodec: false,
  265. //
  266. // // Provides a way to configure the maximum bitrates that will be enforced on the simulcast streams for
  267. // // video tracks. The keys in the object represent the type of the stream (LD, SD or HD) and the values
  268. // // are the max.bitrates to be set on that particular type of stream. The actual send may vary based on
  269. // // the available bandwidth calculated by the browser, but it will be capped by the values specified here.
  270. // // This is currently not implemented on app based clients on mobile.
  271. // maxBitratesVideo: {
  272. // H264: {
  273. // low: 200000,
  274. // standard: 500000,
  275. // high: 1500000
  276. // },
  277. // VP8 : {
  278. // low: 200000,
  279. // standard: 500000,
  280. // high: 1500000
  281. // },
  282. // VP9: {
  283. // low: 100000,
  284. // standard: 300000,
  285. // high: 1200000
  286. // }
  287. // },
  288. //
  289. // // The options can be used to override default thresholds of video thumbnail heights corresponding to
  290. // // the video quality levels used in the application. At the time of this writing the allowed levels are:
  291. // // 'low' - for the low quality level (180p at the time of this writing)
  292. // // 'standard' - for the medium quality level (360p)
  293. // // 'high' - for the high quality level (720p)
  294. // // The keys should be positive numbers which represent the minimal thumbnail height for the quality level.
  295. // //
  296. // // With the default config value below the application will use 'low' quality until the thumbnails are
  297. // // at least 360 pixels tall. If the thumbnail height reaches 720 pixels then the application will switch to
  298. // // the high quality.
  299. // minHeightForQualityLvl: {
  300. // 360: 'standard',
  301. // 720: 'high'
  302. // },
  303. //
  304. // // Provides a way to resize the desktop track to 720p (if it is greater than 720p) before creating a canvas
  305. // // for the presenter mode (camera picture-in-picture mode with screenshare).
  306. // resizeDesktopForPresenter: false
  307. // },
  308. // Notification timeouts
  309. // notificationTimeouts: {
  310. // short: 2500,
  311. // medium: 5000,
  312. // long: 10000
  313. // },
  314. // // Options for the recording limit notification.
  315. // recordingLimit: {
  316. //
  317. // // The recording limit in minutes. Note: This number appears in the notification text
  318. // // but doesn't enforce the actual recording time limit. This should be configured in
  319. // // jibri!
  320. // limit: 60,
  321. //
  322. // // The name of the app with unlimited recordings.
  323. // appName: 'Unlimited recordings APP',
  324. //
  325. // // The URL of the app with unlimited recordings.
  326. // appURL: 'https://unlimited.recordings.app.com/'
  327. // },
  328. // Disables or enables RTX (RFC 4588) (defaults to false).
  329. // disableRtx: false,
  330. // Moves all Jitsi Meet 'beforeunload' logic (cleanup, leaving, disconnecting, etc) to the 'unload' event.
  331. // disableBeforeUnloadHandlers: true,
  332. // Disables or enables TCC support in this client (default: enabled).
  333. // enableTcc: true,
  334. // Disables or enables REMB support in this client (default: enabled).
  335. // enableRemb: true,
  336. // Enables ICE restart logic in LJM and displays the page reload overlay on
  337. // ICE failure. Current disabled by default because it's causing issues with
  338. // signaling when Octo is enabled. Also when we do an "ICE restart"(which is
  339. // not a real ICE restart), the client maintains the TCC sequence number
  340. // counter, but the bridge resets it. The bridge sends media packets with
  341. // TCC sequence numbers starting from 0.
  342. // enableIceRestart: false,
  343. // Enables forced reload of the client when the call is migrated as a result of
  344. // the bridge going down.
  345. // enableForcedReload: true,
  346. // Use TURN/UDP servers for the jitsi-videobridge connection (by default
  347. // we filter out TURN/UDP because it is usually not needed since the
  348. // bridge itself is reachable via UDP)
  349. // useTurnUdp: false
  350. // Enable support for encoded transform in supported browsers. This allows
  351. // E2EE to work in Safari if the corresponding flag is enabled in the browser.
  352. // Experimental.
  353. // enableEncodedTransformSupport: false,
  354. // UI
  355. //
  356. // Disables responsive tiles.
  357. // disableResponsiveTiles: false,
  358. // Hides lobby button
  359. // hideLobbyButton: false,
  360. // If Lobby is enabled starts knocking automatically.
  361. // autoKnockLobby: false,
  362. // Hides add breakout room button
  363. // hideAddRoomButton: false,
  364. // Require users to always specify a display name.
  365. // requireDisplayName: true,
  366. // Whether to use a welcome page or not. In case it's false a random room
  367. // will be joined when no room is specified.
  368. enableWelcomePage: true,
  369. // Disable app shortcuts that are registered upon joining a conference
  370. // disableShortcuts: false,
  371. // Disable initial browser getUserMedia requests.
  372. // This is useful for scenarios where users might want to start a conference for screensharing only
  373. // disableInitialGUM: false,
  374. // Enabling the close page will ignore the welcome page redirection when
  375. // a call is hangup.
  376. // enableClosePage: false,
  377. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  378. // Setting this to null, will also disable showing the remote videos
  379. // when the toolbar is shown on mouse movements
  380. // disable1On1Mode: null | false | true,
  381. // Default local name to be displayed
  382. // defaultLocalDisplayName: 'me',
  383. // Default remote name to be displayed
  384. // defaultRemoteDisplayName: 'Fellow Jitster',
  385. // Default language for the user interface.
  386. // defaultLanguage: 'en',
  387. // Disables profile and the edit of all fields from the profile settings (display name and email)
  388. // disableProfile: false,
  389. // Whether or not some features are checked based on token.
  390. // enableFeaturesBasedOnToken: false,
  391. // When enabled the password used for locking a room is restricted to up to the number of digits specified
  392. // roomPasswordNumberOfDigits: 10,
  393. // default: roomPasswordNumberOfDigits: false,
  394. // Message to show the users. Example: 'The service will be down for
  395. // maintenance at 01:00 AM GMT,
  396. // noticeMessage: '',
  397. // Enables calendar integration, depends on googleApiApplicationClientID
  398. // and microsoftApiApplicationClientID
  399. // enableCalendarIntegration: false,
  400. // Configs for prejoin page.
  401. // prejoinConfig: {
  402. // // When 'true', it shows an intermediate page before joining, where the user can configure their devices.
  403. // // This replaces `prejoinPageEnabled`.
  404. // enabled: true,
  405. // // List of buttons to hide from the extra join options dropdown.
  406. // hideExtraJoinButtons: ['no-audio', 'by-phone']
  407. // },
  408. // When 'true', the user cannot edit the display name.
  409. // (Mainly useful when used in conjuction with the JWT so the JWT name becomes read only.)
  410. // readOnlyName: false,
  411. // If etherpad integration is enabled, setting this to true will
  412. // automatically open the etherpad when a participant joins. This
  413. // does not affect the mobile app since opening an etherpad
  414. // obscures the conference controls -- it's better to let users
  415. // choose to open the pad on their own in that case.
  416. // openSharedDocumentOnJoin: false,
  417. // If true, shows the unsafe room name warning label when a room name is
  418. // deemed unsafe (due to the simplicity in the name) and a password is not
  419. // set or the lobby is not enabled.
  420. // enableInsecureRoomNameWarning: false,
  421. // Whether to automatically copy invitation URL after creating a room.
  422. // Document should be focused for this option to work
  423. // enableAutomaticUrlCopy: false,
  424. // Base URL for a Gravatar-compatible service. Defaults to libravatar.
  425. // gravatarBaseURL: 'https://seccdn.libravatar.org/avatar/',
  426. // App name to be displayed in the invitation email subject, as an alternative to
  427. // interfaceConfig.APP_NAME.
  428. // inviteAppName: null,
  429. // Moved from interfaceConfig(TOOLBAR_BUTTONS).
  430. // The name of the toolbar buttons to display in the toolbar, including the
  431. // "More actions" menu. If present, the button will display. Exceptions are
  432. // "livestreaming" and "recording" which also require being a moderator and
  433. // some other values in config.js to be enabled. Also, the "profile" button will
  434. // not display for users with a JWT.
  435. // Notes:
  436. // - it's impossible to choose which buttons go in the "More actions" menu
  437. // - it's impossible to control the placement of buttons
  438. // - 'desktop' controls the "Share your screen" button
  439. // - if `toolbarButtons` is undefined, we fallback to enabling all buttons on the UI
  440. // toolbarButtons: [
  441. // 'camera',
  442. // 'chat',
  443. // 'closedcaptions',
  444. // 'desktop',
  445. // 'download',
  446. // 'embedmeeting',
  447. // 'etherpad',
  448. // 'feedback',
  449. // 'filmstrip',
  450. // 'fullscreen',
  451. // 'hangup',
  452. // 'help',
  453. // 'invite',
  454. // 'livestreaming',
  455. // 'microphone',
  456. // 'mute-everyone',
  457. // 'mute-video-everyone',
  458. // 'participants-pane',
  459. // 'profile',
  460. // 'raisehand',
  461. // 'recording',
  462. // 'security',
  463. // 'select-background',
  464. // 'settings',
  465. // 'shareaudio',
  466. // 'sharedvideo',
  467. // 'shortcuts',
  468. // 'stats',
  469. // 'tileview',
  470. // 'toggle-camera',
  471. // 'videoquality',
  472. // '__end'
  473. // ],
  474. // Holds values related to toolbar visibility control.
  475. // toolbarConfig: {
  476. // // Moved from interfaceConfig.INITIAL_TOOLBAR_TIMEOUT
  477. // // The initial numer of miliseconds for the toolbar buttons to be visible on screen.
  478. // initialTimeout: 20000,
  479. // // Moved from interfaceConfig.TOOLBAR_TIMEOUT
  480. // // Number of miliseconds for the toolbar buttons to be visible on screen.
  481. // timeout: 4000,
  482. // // Moved from interfaceConfig.TOOLBAR_ALWAYS_VISIBLE
  483. // // Whether toolbar should be always visible or should hide after x miliseconds.
  484. // alwaysVisible: false
  485. // },
  486. // Toolbar buttons which have their click event exposed through the API on
  487. // `toolbarButtonClicked` event instead of executing the normal click routine.
  488. // buttonsWithNotifyClick: [
  489. // 'camera',
  490. // 'chat',
  491. // 'closedcaptions',
  492. // 'desktop',
  493. // 'download',
  494. // 'embedmeeting',
  495. // 'etherpad',
  496. // 'feedback',
  497. // 'filmstrip',
  498. // 'fullscreen',
  499. // 'hangup',
  500. // 'help',
  501. // 'invite',
  502. // 'livestreaming',
  503. // 'microphone',
  504. // 'mute-everyone',
  505. // 'mute-video-everyone',
  506. // 'participants-pane',
  507. // 'profile',
  508. // 'raisehand',
  509. // 'recording',
  510. // 'security',
  511. // 'select-background',
  512. // 'settings',
  513. // 'shareaudio',
  514. // 'sharedvideo',
  515. // 'shortcuts',
  516. // 'stats',
  517. // 'tileview',
  518. // 'toggle-camera',
  519. // 'videoquality',
  520. // '__end'
  521. // ],
  522. // List of pre meeting screens buttons to hide. The values must be one or more of the 5 allowed buttons:
  523. // 'microphone', 'camera', 'select-background', 'invite', 'settings'
  524. // hiddenPremeetingButtons: [],
  525. // Stats
  526. //
  527. // Whether to enable stats collection or not in the TraceablePeerConnection.
  528. // This can be useful for debugging purposes (post-processing/analysis of
  529. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  530. // estimation tests.
  531. // gatherStats: false,
  532. // The interval at which PeerConnection.getStats() is called. Defaults to 10000
  533. // pcStatsInterval: 10000,
  534. // To enable sending statistics to callstats.io you must provide the
  535. // Application ID and Secret.
  536. // callStatsID: '',
  537. // callStatsSecret: '',
  538. // The callstats initialize config params as described in the API:
  539. // https://docs.callstats.io/docs/javascript#callstatsinitialize-with-app-secret
  540. // callStatsConfigParams: {
  541. // disableBeforeUnloadHandler: true, // disables callstats.js's window.onbeforeunload parameter.
  542. // applicationVersion: "app_version", // Application version specified by the developer.
  543. // disablePrecalltest: true, // disables the pre-call test, it is enabled by default.
  544. // siteID: "siteID", // The name/ID of the site/campus from where the call/pre-call test is made.
  545. // additionalIDs: { // additionalIDs object, contains application related IDs.
  546. // customerID: "Customer Identifier. Example, walmart.",
  547. // tenantID: "Tenant Identifier. Example, monster.",
  548. // productName: "Product Name. Example, Jitsi.",
  549. // meetingsName: "Meeting Name. Example, Jitsi loves callstats.",
  550. // serverName: "Server/MiddleBox Name. Example, jvb-prod-us-east-mlkncws12.",
  551. // pbxID: "PBX Identifier. Example, walmart.",
  552. // pbxExtensionID: "PBX Extension Identifier. Example, 5625.",
  553. // fqExtensionID: "Fully qualified Extension Identifier. Example, +71 (US) +5625.",
  554. // sessionID: "Session Identifier. Example, session-12-34"
  555. // },
  556. // collectLegacyStats: true, //enables the collection of legacy stats in chrome browser
  557. // collectIP: true //enables the collection localIP address
  558. // },
  559. // Enables sending participants' display names to callstats
  560. // enableDisplayNameInStats: false,
  561. // Enables sending participants' emails (if available) to callstats and other analytics
  562. // enableEmailInStats: false,
  563. // Enables detecting faces of participants and get their expression and send it to other participants
  564. // enableFacialRecognition: true,
  565. // Controls the percentage of automatic feedback shown to participants when callstats is enabled.
  566. // The default value is 100%. If set to 0, no automatic feedback will be requested
  567. // feedbackPercentage: 100,
  568. // Privacy
  569. //
  570. // If third party requests are disabled, no other server will be contacted.
  571. // This means avatars will be locally generated and callstats integration
  572. // will not function.
  573. // disableThirdPartyRequests: false,
  574. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  575. //
  576. p2p: {
  577. // Enables peer to peer mode. When enabled the system will try to
  578. // establish a direct connection when there are exactly 2 participants
  579. // in the room. If that succeeds the conference will stop sending data
  580. // through the JVB and use the peer to peer connection instead. When a
  581. // 3rd participant joins the conference will be moved back to the JVB
  582. // connection.
  583. enabled: true,
  584. // Enable unified plan implementation support on Chromium for p2p connection.
  585. // enableUnifiedOnChrome: false,
  586. // Sets the ICE transport policy for the p2p connection. At the time
  587. // of this writing the list of possible values are 'all' and 'relay',
  588. // but that is subject to change in the future. The enum is defined in
  589. // the WebRTC standard:
  590. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  591. // If not set, the effective value is 'all'.
  592. // iceTransportPolicy: 'all',
  593. // If set to true, it will prefer to use H.264 for P2P calls (if H.264
  594. // is supported). This setting is deprecated, use preferredCodec instead.
  595. // preferH264: true,
  596. // Provides a way to set the video codec preference on the p2p connection. Acceptable
  597. // codec values are 'VP8', 'VP9' and 'H264'.
  598. // preferredCodec: 'H264',
  599. // If set to true, disable H.264 video codec by stripping it out of the
  600. // SDP. This setting is deprecated, use disabledCodec instead.
  601. // disableH264: false,
  602. // Provides a way to prevent a video codec from being negotiated on the p2p connection.
  603. // disabledCodec: '',
  604. // How long we're going to wait, before going back to P2P after the 3rd
  605. // participant has left the conference (to filter out page reload).
  606. // backToP2PDelay: 5,
  607. // The STUN servers that will be used in the peer to peer connections
  608. stunServers: [
  609. // { urls: 'stun:jitsi-meet.example.com:3478' },
  610. { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' }
  611. ]
  612. },
  613. analytics: {
  614. // True if the analytics should be disabled
  615. // disabled: false,
  616. // The Google Analytics Tracking ID:
  617. // googleAnalyticsTrackingId: 'your-tracking-id-UA-123456-1'
  618. // Matomo configuration:
  619. // matomoEndpoint: 'https://your-matomo-endpoint/',
  620. // matomoSiteID: '42',
  621. // The Amplitude APP Key:
  622. // amplitudeAPPKey: '<APP_KEY>'
  623. // Configuration for the rtcstats server:
  624. // By enabling rtcstats server every time a conference is joined the rtcstats
  625. // module connects to the provided rtcstatsEndpoint and sends statistics regarding
  626. // PeerConnection states along with getStats metrics polled at the specified
  627. // interval.
  628. // rtcstatsEnabled: false,
  629. // In order to enable rtcstats one needs to provide a endpoint url.
  630. // rtcstatsEndpoint: wss://rtcstats-server-pilot.jitsi.net/,
  631. // The interval at which rtcstats will poll getStats, defaults to 1000ms.
  632. // If the value is set to 0 getStats won't be polled and the rtcstats client
  633. // will only send data related to RTCPeerConnection events.
  634. // rtcstatsPolIInterval: 1000,
  635. // Array of script URLs to load as lib-jitsi-meet "analytics handlers".
  636. // scriptURLs: [
  637. // "libs/analytics-ga.min.js", // google-analytics
  638. // "https://example.com/my-custom-analytics.js"
  639. // ],
  640. },
  641. // Logs that should go be passed through the 'log' event if a handler is defined for it
  642. // apiLogLevels: ['warn', 'log', 'error', 'info', 'debug'],
  643. // Information about the jitsi-meet instance we are connecting to, including
  644. // the user region as seen by the server.
  645. deploymentInfo: {
  646. // shard: "shard1",
  647. // region: "europe",
  648. // userRegion: "asia"
  649. },
  650. // Array<string> of disabled sounds.
  651. // Possible values:
  652. // - 'ASKED_TO_UNMUTE_SOUND'
  653. // - 'E2EE_OFF_SOUND'
  654. // - 'E2EE_ON_SOUND'
  655. // - 'INCOMING_MSG_SOUND'
  656. // - 'KNOCKING_PARTICIPANT_SOUND'
  657. // - 'LIVE_STREAMING_OFF_SOUND'
  658. // - 'LIVE_STREAMING_ON_SOUND'
  659. // - 'NO_AUDIO_SIGNAL_SOUND'
  660. // - 'NOISY_AUDIO_INPUT_SOUND'
  661. // - 'OUTGOING_CALL_EXPIRED_SOUND'
  662. // - 'OUTGOING_CALL_REJECTED_SOUND'
  663. // - 'OUTGOING_CALL_RINGING_SOUND'
  664. // - 'OUTGOING_CALL_START_SOUND'
  665. // - 'PARTICIPANT_JOINED_SOUND'
  666. // - 'PARTICIPANT_LEFT_SOUND'
  667. // - 'RAISE_HAND_SOUND'
  668. // - 'REACTION_SOUND'
  669. // - 'RECORDING_OFF_SOUND'
  670. // - 'RECORDING_ON_SOUND'
  671. // - 'TALK_WHILE_MUTED_SOUND'
  672. // disabledSounds: [],
  673. // DEPRECATED! Use `disabledSounds` instead.
  674. // Decides whether the start/stop recording audio notifications should play on record.
  675. // disableRecordAudioNotification: false,
  676. // DEPRECATED! Use `disabledSounds` instead.
  677. // Disables the sounds that play when other participants join or leave the
  678. // conference (if set to true, these sounds will not be played).
  679. // disableJoinLeaveSounds: false,
  680. // DEPRECATED! Use `disabledSounds` instead.
  681. // Disables the sounds that play when a chat message is received.
  682. // disableIncomingMessageSound: false,
  683. // Information for the chrome extension banner
  684. // chromeExtensionBanner: {
  685. // // The chrome extension to be installed address
  686. // url: 'https://chrome.google.com/webstore/detail/jitsi-meetings/kglhbbefdnlheedjiejgomgmfplipfeb',
  687. // // Extensions info which allows checking if they are installed or not
  688. // chromeExtensionsInfo: [
  689. // {
  690. // id: 'kglhbbefdnlheedjiejgomgmfplipfeb',
  691. // path: 'jitsi-logo-48x48.png'
  692. // }
  693. // ]
  694. // },
  695. // Local Recording
  696. //
  697. // localRecording: {
  698. // Enables local recording.
  699. // Additionally, 'localrecording' (all lowercase) needs to be added to
  700. // the `toolbarButtons`-array for the Local Recording button to show up
  701. // on the toolbar.
  702. //
  703. // enabled: true,
  704. //
  705. // The recording format, can be one of 'ogg', 'flac' or 'wav'.
  706. // format: 'flac'
  707. //
  708. // },
  709. // e2ee: {
  710. // labels,
  711. // externallyManagedKey: false
  712. // },
  713. // Options related to end-to-end (participant to participant) ping.
  714. // e2eping: {
  715. // // The interval in milliseconds at which pings will be sent.
  716. // // Defaults to 10000, set to <= 0 to disable.
  717. // pingInterval: 10000,
  718. //
  719. // // The interval in milliseconds at which analytics events
  720. // // with the measured RTT will be sent. Defaults to 60000, set
  721. // // to <= 0 to disable.
  722. // analyticsInterval: 60000,
  723. // },
  724. // If set, will attempt to use the provided video input device label when
  725. // triggering a screenshare, instead of proceeding through the normal flow
  726. // for obtaining a desktop stream.
  727. // NOTE: This option is experimental and is currently intended for internal
  728. // use only.
  729. // _desktopSharingSourceDevice: 'sample-id-or-label',
  730. // If true, any checks to handoff to another application will be prevented
  731. // and instead the app will continue to display in the current browser.
  732. // disableDeepLinking: false,
  733. // A property to disable the right click context menu for localVideo
  734. // the menu has option to flip the locally seen video for local presentations
  735. // disableLocalVideoFlip: false,
  736. // A property used to unset the default flip state of the local video.
  737. // When it is set to 'true', the local(self) video will not be mirrored anymore.
  738. // doNotFlipLocalVideo: false,
  739. // Mainly privacy related settings
  740. // Disables all invite functions from the app (share, invite, dial out...etc)
  741. // disableInviteFunctions: true,
  742. // Disables storing the room name to the recents list
  743. // doNotStoreRoom: true,
  744. // Deployment specific URLs.
  745. // deploymentUrls: {
  746. // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
  747. // // user documentation.
  748. // userDocumentationURL: 'https://docs.example.com/video-meetings.html',
  749. // // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
  750. // // to the specified URL for an app download page.
  751. // downloadAppsUrl: 'https://docs.example.com/our-apps.html'
  752. // },
  753. // Options related to the remote participant menu.
  754. // remoteVideoMenu: {
  755. // // If set to true the 'Kick out' button will be disabled.
  756. // disableKick: true,
  757. // // If set to true the 'Grant moderator' button will be disabled.
  758. // disableGrantModerator: true
  759. // },
  760. // If set to true all muting operations of remote participants will be disabled.
  761. // disableRemoteMute: true,
  762. // Enables support for lip-sync for this client (if the browser supports it).
  763. // enableLipSync: false
  764. /**
  765. External API url used to receive branding specific information.
  766. If there is no url set or there are missing fields, the defaults are applied.
  767. The config file should be in JSON.
  768. None of the fields are mandatory and the response must have the shape:
  769. {
  770. // The domain url to apply (will replace the domain in the sharing conference link/embed section)
  771. inviteDomain: 'example-company.org,
  772. // The hex value for the colour used as background
  773. backgroundColor: '#fff',
  774. // The url for the image used as background
  775. backgroundImageUrl: 'https://example.com/background-img.png',
  776. // The anchor url used when clicking the logo image
  777. logoClickUrl: 'https://example-company.org',
  778. // The url used for the image used as logo
  779. logoImageUrl: 'https://example.com/logo-img.png',
  780. // Overwrite for pool of background images for avatars
  781. avatarBackgrounds: ['url(https://example.com/avatar-background-1.png)', '#FFF'],
  782. // The lobby/prejoin screen background
  783. premeetingBackground: 'url(https://example.com/premeeting-background.png)',
  784. // A list of images that can be used as video backgrounds.
  785. // When this field is present, the default images will be replaced with those provided.
  786. virtualBackgrounds: ['https://example.com/img.jpg'],
  787. // Object containing a theme's properties. It also supports partial overwrites of the main theme.
  788. // For a list of all possible theme tokens and their current defaults, please check:
  789. // https://github.com/jitsi/jitsi-meet/tree/master/resources/custom-theme/custom-theme.json
  790. // For a short explanations on each of the tokens, please check:
  791. // https://github.com/jitsi/jitsi-meet/blob/master/react/features/base/ui/Tokens.js
  792. // IMPORTANT!: This is work in progress so many of the various tokens are not yet applied in code
  793. // or they are partially applied.
  794. customTheme: {
  795. palette: {
  796. ui01: "orange !important",
  797. ui02: "maroon",
  798. surface02: 'darkgreen',
  799. ui03: "violet",
  800. ui04: "magenta",
  801. ui05: "blueviolet",
  802. field02Hover: 'red',
  803. action01: 'green',
  804. action01Hover: 'lightgreen',
  805. action02Disabled: 'beige',
  806. success02: 'cadetblue',
  807. action02Hover: 'aliceblue'
  808. },
  809. typography: {
  810. labelRegular: {
  811. fontSize: 25,
  812. lineHeight: 30,
  813. fontWeight: 500
  814. }
  815. }
  816. }
  817. }
  818. */
  819. // dynamicBrandingUrl: '',
  820. // When true the user cannot add more images to be used as virtual background.
  821. // Only the default ones from will be available.
  822. // disableAddingBackgroundImages: false,
  823. // Disables using screensharing as virtual background.
  824. // disableScreensharingVirtualBackground: false,
  825. // Sets the background transparency level. '0' is fully transparent, '1' is opaque.
  826. // backgroundAlpha: 1,
  827. // The URL of the moderated rooms microservice, if available. If it
  828. // is present, a link to the service will be rendered on the welcome page,
  829. // otherwise the app doesn't render it.
  830. // moderatedRoomServiceUrl: 'https://moderated.jitsi-meet.example.com',
  831. // If true, tile view will not be enabled automatically when the participants count threshold is reached.
  832. // disableTileView: true,
  833. // If true, the tiles will be displayed contained within the available space rather than enlarged to cover it.
  834. // disableTileEnlargement: true,
  835. // Controls the visibility and behavior of the top header conference info labels.
  836. // If a label's id is not in any of the 2 arrays, it will not be visible at all on the header.
  837. // conferenceInfo: {
  838. // // those labels will not be hidden in tandem with the toolbox.
  839. // alwaysVisible: ['recording', 'local-recording'],
  840. // // those labels will be auto-hidden in tandem with the toolbox buttons.
  841. // autoHide: [
  842. // 'subject',
  843. // 'conference-timer',
  844. // 'participants-count',
  845. // 'e2ee',
  846. // 'transcribing',
  847. // 'video-quality',
  848. // 'insecure-room'
  849. // ]
  850. // },
  851. // Hides the conference subject
  852. // hideConferenceSubject: true,
  853. // Hides the conference timer.
  854. // hideConferenceTimer: true,
  855. // Hides the recording label
  856. // hideRecordingLabel: false,
  857. // Hides the participants stats
  858. // hideParticipantsStats: true,
  859. // Sets the conference subject
  860. // subject: 'Conference Subject',
  861. // This property is related to the use case when jitsi-meet is used via the IFrame API. When the property is true
  862. // jitsi-meet will use the local storage of the host page instead of its own. This option is useful if the browser
  863. // is not persisting the local storage inside the iframe.
  864. // useHostPageLocalStorage: true,
  865. // etherpad ("shared document") integration.
  866. //
  867. // If set, add a "Open shared document" link to the bottom right menu that
  868. // will open an etherpad document.
  869. // etherpad_base: 'https://your-etherpad-installati.on/p/',
  870. // List of undocumented settings used in jitsi-meet
  871. /**
  872. _immediateReloadThreshold
  873. debug
  874. debugAudioLevels
  875. deploymentInfo
  876. dialInConfCodeUrl
  877. dialInNumbersUrl
  878. dialOutAuthUrl
  879. dialOutCodesUrl
  880. disableRemoteControl
  881. displayJids
  882. externalConnectUrl
  883. e2eeLabels
  884. firefox_fake_device
  885. googleApiApplicationClientID
  886. iAmRecorder
  887. iAmSipGateway
  888. microsoftApiApplicationClientID
  889. peopleSearchQueryTypes
  890. peopleSearchUrl
  891. requireDisplayName
  892. tokenAuthUrl
  893. */
  894. /**
  895. * This property can be used to alter the generated meeting invite links (in combination with a branding domain
  896. * which is retrieved internally by jitsi meet) (e.g. https://meet.jit.si/someMeeting
  897. * can become https://brandedDomain/roomAlias)
  898. */
  899. // brandingRoomAlias: null,
  900. // List of undocumented settings used in lib-jitsi-meet
  901. /**
  902. _peerConnStatusOutOfLastNTimeout
  903. _peerConnStatusRtcMuteTimeout
  904. abTesting
  905. avgRtpStatsN
  906. callStatsConfIDNamespace
  907. callStatsCustomScriptUrl
  908. desktopSharingSources
  909. disableAEC
  910. disableAGC
  911. disableAP
  912. disableHPF
  913. disableNS
  914. enableTalkWhileMuted
  915. forceJVB121Ratio
  916. forceTurnRelay
  917. hiddenDomain
  918. ignoreStartMuted
  919. websocketKeepAlive
  920. websocketKeepAliveUrl
  921. */
  922. /**
  923. * Default interval (milliseconds) for triggering mouseMoved iframe API event
  924. */
  925. mouseMoveCallbackInterval: 1000,
  926. /**
  927. Use this array to configure which notifications will be shown to the user
  928. The items correspond to the title or description key of that notification
  929. Some of these notifications also depend on some other internal logic to be displayed or not,
  930. so adding them here will not ensure they will always be displayed
  931. A falsy value for this prop will result in having all notifications enabled (e.g null, undefined, false)
  932. */
  933. // notifications: [
  934. // 'connection.CONNFAIL', // shown when the connection fails,
  935. // 'dialog.cameraNotSendingData', // shown when there's no feed from user's camera
  936. // 'dialog.kickTitle', // shown when user has been kicked
  937. // 'dialog.liveStreaming', // livestreaming notifications (pending, on, off, limits)
  938. // 'dialog.lockTitle', // shown when setting conference password fails
  939. // 'dialog.maxUsersLimitReached', // shown when maximmum users limit has been reached
  940. // 'dialog.micNotSendingData', // shown when user's mic is not sending any audio
  941. // 'dialog.passwordNotSupportedTitle', // shown when setting conference password fails due to password format
  942. // 'dialog.recording', // recording notifications (pending, on, off, limits)
  943. // 'dialog.remoteControlTitle', // remote control notifications (allowed, denied, start, stop, error)
  944. // 'dialog.reservationError',
  945. // 'dialog.serviceUnavailable', // shown when server is not reachable
  946. // 'dialog.sessTerminated', // shown when there is a failed conference session
  947. // 'dialog.sessionRestarted', // show when a client reload is initiated because of bridge migration
  948. // 'dialog.tokenAuthFailed', // show when an invalid jwt is used
  949. // 'dialog.transcribing', // transcribing notifications (pending, off)
  950. // 'dialOut.statusMessage', // shown when dial out status is updated.
  951. // 'liveStreaming.busy', // shown when livestreaming service is busy
  952. // 'liveStreaming.failedToStart', // shown when livestreaming fails to start
  953. // 'liveStreaming.unavailableTitle', // shown when livestreaming service is not reachable
  954. // 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected
  955. // 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied
  956. // 'localRecording.localRecording', // shown when a local recording is started
  957. // 'notify.disconnected', // shown when a participant has left
  958. // 'notify.connectedOneMember', // show when a participant joined
  959. // 'notify.connectedTwoMembers', // show when two participants joined simultaneously
  960. // 'notify.connectedThreePlusMembers', // show when more than 2 participants joined simultaneously
  961. // 'notify.grantedTo', // shown when moderator rights were granted to a participant
  962. // 'notify.invitedOneMember', // shown when 1 participant has been invited
  963. // 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited
  964. // 'notify.invitedTwoMembers', // shown when 2 participants have been invited
  965. // 'notify.kickParticipant', // shown when a participant is kicked
  966. // 'notify.moderationStartedTitle', // shown when AV moderation is activated
  967. // 'notify.moderationStoppedTitle', // shown when AV moderation is deactivated
  968. // 'notify.moderationInEffectTitle', // shown when user attempts to unmute audio during AV moderation
  969. // 'notify.moderationInEffectVideoTitle', // shown when user attempts to enable video during AV moderation
  970. // 'notify.moderationInEffectCSTitle', // shown when user attempts to share content during AV moderation
  971. // 'notify.mutedRemotelyTitle', // shown when user is muted by a remote party
  972. // 'notify.mutedTitle', // shown when user has been muted upon joining,
  973. // 'notify.newDeviceAudioTitle', // prompts the user to use a newly detected audio device
  974. // 'notify.newDeviceCameraTitle', // prompts the user to use a newly detected camera
  975. // 'notify.passwordRemovedRemotely', // shown when a password has been removed remotely
  976. // 'notify.passwordSetRemotely', // shown when a password has been set remotely
  977. // 'notify.raisedHand', // shown when a partcipant used raise hand,
  978. // 'notify.startSilentTitle', // shown when user joined with no audio
  979. // 'notify.unmute', // shown to moderator when user raises hand during AV moderation
  980. // 'prejoin.errorDialOut',
  981. // 'prejoin.errorDialOutDisconnected',
  982. // 'prejoin.errorDialOutFailed',
  983. // 'prejoin.errorDialOutStatus',
  984. // 'prejoin.errorStatusCode',
  985. // 'prejoin.errorValidation',
  986. // 'recording.busy', // shown when recording service is busy
  987. // 'recording.failedToStart', // shown when recording fails to start
  988. // 'recording.unavailableTitle', // shown when recording service is not reachable
  989. // 'toolbar.noAudioSignalTitle', // shown when a broken mic is detected
  990. // 'toolbar.noisyAudioInputTitle', // shown when noise is detected for the current microphone
  991. // 'toolbar.talkWhileMutedPopup', // shown when user tries to speak while muted
  992. // 'transcribing.failedToStart' // shown when transcribing fails to start
  993. // ],
  994. // Prevent the filmstrip from autohiding when screen width is under a certain threshold
  995. // disableFilmstripAutohiding: false,
  996. // Specifies whether the chat emoticons are disabled or not
  997. // disableChatSmileys: false,
  998. // Allow all above example options to include a trailing comma and
  999. // prevent fear when commenting out the last value.
  1000. makeJsonParserHappy: 'even if last key had a trailing comma'
  1001. // no configuration value should follow this line.
  1002. };
  1003. /* eslint-enable no-unused-vars, no-var */