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

constants.js 619B

12345678910111213141516171819202122232425262728
  1. // @flow
  2. /**
  3. * The identifier of the sound to be played when a recording or live streaming
  4. * session is stopped.
  5. *
  6. * @type {string}
  7. */
  8. export const RECORDING_OFF_SOUND_ID = 'RECORDING_OFF_SOUND';
  9. /**
  10. * The identifier of the sound to be played when a recording or live streaming
  11. * session is started.
  12. *
  13. * @type {string}
  14. */
  15. export const RECORDING_ON_SOUND_ID = 'RECORDING_ON_SOUND';
  16. /**
  17. * Expected supported recording types. JIBRI is known to support live streaming
  18. * whereas JIRECON is for recording.
  19. *
  20. * @type {Object}
  21. */
  22. export const RECORDING_TYPES = {
  23. JIBRI: 'jibri',
  24. JIRECON: 'jirecon'
  25. };