@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
25 lines (24 loc) • 755 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.WARNING_THRESHOLD_EXPIRING_SOON = exports.LIVE_CHECKING_INTERVAL = exports.LIVE_CHECKING_INITIAL_DELAY_GUEST = exports.LIVE_CHECKING_INITIAL_DELAY_HOST = exports.defaultVideoOptions = exports.PREFIX = void 0;
exports.PREFIX = 'SCLiveStreamRoom';
exports.defaultVideoOptions = {
hq: true,
codec: 'vp9'
};
/**
* Start the checking after a delay
* In minutes
*/
exports.LIVE_CHECKING_INITIAL_DELAY_HOST = 4;
exports.LIVE_CHECKING_INITIAL_DELAY_GUEST = 1;
/**
* Checking live status on VideoLiveConference
* In minutes
*/
exports.LIVE_CHECKING_INTERVAL = 1;
/**
* Warning threshold expiring soon
* In minutes
*/
exports.WARNING_THRESHOLD_EXPIRING_SOON = 5;
;