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

constants.js 645B

12345678910111213141516171819202122232425262728293031
  1. // @flow
  2. /**
  3. * Placeholder for web share video input.
  4. * @type {string}
  5. */
  6. export const defaultSharedVideoLink = 'Youtube link or direct video link';
  7. /**
  8. * Mobile example for a youtube video
  9. */
  10. export const defaultMobileSharedVideoLink = 'https://youtu.be/TB7LlM4erx8';
  11. /**
  12. * Fixed name of the video player fake participant.
  13. * @type {string}
  14. */
  15. export const VIDEO_PLAYER_PARTICIPANT_NAME = 'Video';
  16. /**
  17. * Fixed name of the youtube player fake participant.
  18. * @type {string}
  19. */
  20. export const YOUTUBE_PLAYER_PARTICIPANT_NAME = 'YouTube';
  21. /**
  22. * Shared video command.
  23. * @type {string}
  24. */
  25. export const SHARED_VIDEO = 'shared-video';