UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

22 lines (21 loc) 548 B
/** * ESAM signal following the SCTE-250 standard * @export * @class EsamSignal */ export declare class EsamSignal { /** * The offset from the matched signal in ISO 8601 duration format, accurate to milliseconds * @type {string} * @memberof EsamSignal */ offset?: string; /** * Base64-encoded SCTE-35 binary data to be inserted into the stream (required) * @type {string} * @memberof EsamSignal */ binary?: string; constructor(obj?: Partial<EsamSignal>); } export default EsamSignal;