@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
15 lines (14 loc) • 991 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DashScte35EventStreamSignalling = void 0;
/**
* Defines how SCTE-35 events are delivered using DASH EventStream. <ul> <li>XML: Events will contain an XML representation of a SCTE-35 cue message as a SpliceInfoSection element as defined in SCTE-35. The schemeIdUri will be \"urn:scte:scte35:2013:xml.</li> <li>XML_BIN: Events will contain an XML representation of a SCTE-35 cue message as a Signal.Binary element as defined in SCTE-35. The schemeIdUri will be \"urn:scte:scte35:2014:xml+bin</li> </ul>
* @export
* @enum {string}
*/
var DashScte35EventStreamSignalling;
(function (DashScte35EventStreamSignalling) {
DashScte35EventStreamSignalling["XML"] = "XML";
DashScte35EventStreamSignalling["XML_BIN"] = "XML_BIN";
})(DashScte35EventStreamSignalling || (exports.DashScte35EventStreamSignalling = DashScte35EventStreamSignalling = {}));
exports.default = DashScte35EventStreamSignalling;