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

constants.js 235B

123456789101112
  1. // @flow
  2. /**
  3. * Expected supported recording types. JIBRI is known to support live streaming
  4. * whereas JIRECON is for recording.
  5. *
  6. * @type {Object}
  7. */
  8. export const RECORDING_TYPES = {
  9. JIBRI: 'jibri',
  10. JIRECON: 'jirecon'
  11. };