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 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. };