@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
22 lines (21 loc) • 592 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DrmType = void 0;
/**
* The type of the drm
* @export
* @enum {string}
*/
var DrmType;
(function (DrmType) {
DrmType["WIDEVINE"] = "WIDEVINE";
DrmType["PLAYREADY"] = "PLAYREADY";
DrmType["PRIMETIME"] = "PRIMETIME";
DrmType["FAIRPLAY"] = "FAIRPLAY";
DrmType["MARLIN"] = "MARLIN";
DrmType["CLEARKEY"] = "CLEARKEY";
DrmType["AES"] = "AES";
DrmType["CENC"] = "CENC";
DrmType["SPEKE"] = "SPEKE";
})(DrmType || (exports.DrmType = DrmType = {}));
exports.default = DrmType;