@svta/common-media-library
Version:
A common library for media playback in JavaScript
27 lines • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CmStreamingFormat = void 0;
/**
* Common Media Streaming Format
*
* @internal
*/
exports.CmStreamingFormat = {
/**
* MPEG DASH
*/
DASH: 'd',
/**
* HTTP Live Streaming (HLS)
*/
HLS: 'h',
/**
* Smooth Streaming
*/
SMOOTH: 's',
/**
* Other
*/
OTHER: 'o',
};
//# sourceMappingURL=CmStreamingFormat.js.map