您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

interface_config.js 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. var interfaceConfig = {
  2. CANVAS_EXTRA: 104,
  3. CANVAS_RADIUS: 0,
  4. SHADOW_COLOR: '#ffffff',
  5. INITIAL_TOOLBAR_TIMEOUT: 20000,
  6. TOOLBAR_TIMEOUT: 4000,
  7. DEFAULT_REMOTE_DISPLAY_NAME: "Fellow Jitster",
  8. DEFAULT_LOCAL_DISPLAY_NAME: "me",
  9. SHOW_JITSI_WATERMARK: true,
  10. JITSI_WATERMARK_LINK: "https://jitsi.org",
  11. SHOW_BRAND_WATERMARK: false,
  12. BRAND_WATERMARK_LINK: "",
  13. SHOW_POWERED_BY: false,
  14. GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true,
  15. APP_NAME: "Jitsi Meet",
  16. INVITATION_POWERED_BY: true,
  17. TOOLBAR_BUTTONS: ['authentication', 'microphone', 'camera', 'desktop',
  18. 'recording', 'security', 'invite', 'chat', 'etherpad', 'sharedvideo',
  19. 'fullscreen', 'sip', 'dialpad', 'settings', 'hangup', 'filmstrip',
  20. 'contacts'],
  21. // Determines how the video would fit the screen. 'both' would fit the whole
  22. // screen, 'height' would fit the original video height to the height of the
  23. // screen, 'width' would fit the original video width to the width of the
  24. // screen respecting ratio.
  25. VIDEO_LAYOUT_FIT: 'both',
  26. /**
  27. * Whether to only show the filmstrip (and hide the toolbar).
  28. */
  29. filmStripOnly: false,
  30. RANDOM_AVATAR_URL_PREFIX: false,
  31. RANDOM_AVATAR_URL_SUFFIX: false,
  32. FILM_STRIP_MAX_HEIGHT: 120
  33. };