Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435
  1. var config = {
  2. hosts: {
  3. domain: 'jitsi-meet.example.com',
  4. //anonymousdomain: 'guest.example.com',
  5. muc: 'conference.jitsi-meet.example.com', // FIXME: use XEP-0030
  6. bridge: 'jitsi-videobridge.jitsi-meet.example.com', // FIXME: use XEP-0030
  7. //call_control: 'callcontrol.jitsi-meet.example.com',
  8. //focus: 'focus.jitsi-meet.example.com' - defaults to 'focus.jitsi-meet.example.com'
  9. },
  10. // getroomnode: function (path) { return 'someprefixpossiblybasedonpath'; },
  11. // useStunTurn: true, // use XEP-0215 to fetch STUN and TURN server
  12. // useIPv6: true, // ipv6 support. use at your own risk
  13. useNicks: false,
  14. bosh: '//jitsi-meet.example.com/http-bind', // FIXME: use xep-0156 for that
  15. clientNode: 'http://jitsi.org/jitsimeet', // The name of client node advertised in XEP-0115 'c' stanza
  16. //focusUserJid: 'focus@auth.jitsi-meet.example.com', // The real JID of focus participant - can be overridden here
  17. //defaultSipNumber: '', // Default SIP number
  18. desktopSharing: 'ext', // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable.
  19. chromeExtensionId: 'diibjkoicjeejcmhdnailmkgecihlobk', // Id of desktop streamer Chrome extension
  20. desktopSharingSources: ['screen', 'window'],
  21. minChromeExtVersion: '0.1', // Required version of Chrome extension
  22. enableRtpStats: true, // Enables RTP stats processing
  23. openSctp: true, // Toggle to enable/disable SCTP channels
  24. channelLastN: -1, // The default value of the channel attribute last-n.
  25. adaptiveLastN: false,
  26. adaptiveSimulcast: false,
  27. useRtcpMux: true,
  28. useBundle: true,
  29. enableRecording: false,
  30. enableWelcomePage: true,
  31. enableSimulcast: false,
  32. enableFirefoxSupport: false, //firefox support is still experimental, only one-to-one conferences with chrome focus
  33. // will work when simulcast, bundle, mux, lastN and SCTP are disabled.
  34. logStats: false // Enable logging of PeerConnection stats via the focus
  35. };