mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 13:37:51 +00:00
13 lines
235 B
JavaScript
13 lines
235 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Expected supported recording types. JIBRI is known to support live streaming
|
|
* whereas JIRECON is for recording.
|
|
*
|
|
* @type {Object}
|
|
*/
|
|
export const RECORDING_TYPES = {
|
|
JIBRI: 'jibri',
|
|
JIRECON: 'jirecon'
|
|
};
|