You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 521B

1234567891011121314151617181920212223242526272829
  1. // @flow
  2. /**
  3. * Fixed name of the video player fake participant.
  4. * @type {string}
  5. */
  6. export const VIDEO_PLAYER_PARTICIPANT_NAME = 'Video';
  7. /**
  8. * Fixed name of the youtube player fake participant.
  9. * @type {string}
  10. */
  11. export const YOUTUBE_PLAYER_PARTICIPANT_NAME = 'YouTube';
  12. /**
  13. * Shared video command.
  14. * @type {string}
  15. */
  16. export const SHARED_VIDEO = 'shared-video';
  17. /**
  18. * Available playback statuses
  19. */
  20. export const PLAYBACK_STATUSES = {
  21. PLAYING: 'playing',
  22. PAUSED: 'pause',
  23. STOPPED: 'stop'
  24. };