UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

15 lines (14 loc) 723 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DashScte35PeriodOption = void 0; /** * Controls how SCTE-35 signals are applied at the DASH period level. <ul> <li>SINGLE_PERIOD: Applies SCTE markers to a single DASH period.</li> <li>MULTI_PERIOD: Multiple periods are created based on received SCTE-35 messages.</li> </ul> * @export * @enum {string} */ var DashScte35PeriodOption; (function (DashScte35PeriodOption) { DashScte35PeriodOption["SINGLE_PERIOD"] = "SINGLE_PERIOD"; DashScte35PeriodOption["MULTI_PERIOD"] = "MULTI_PERIOD"; })(DashScte35PeriodOption || (exports.DashScte35PeriodOption = DashScte35PeriodOption = {})); exports.default = DashScte35PeriodOption;