@svta/common-media-library
Version:
A common library for media playback in JavaScript
19 lines • 396 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CmStreamType = void 0;
/**
* Common Media Stream Type
*
* @internal
*/
exports.CmStreamType = {
/**
* All segments are available – e.g., VOD
*/
VOD: 'v',
/**
* Segments become available over time – e.g., LIVE
*/
LIVE: 'l',
};
//# sourceMappingURL=CmStreamType.js.map