UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 815 B
/** * @export * @class TsProgramClockReferenceConfiguration */ export declare class TsProgramClockReferenceConfiguration { /** * An integer value. Packet Identifier (PID) for the MPEG Transport Stream PCR. This should generally point to the video stream PID. If it is not explicitly set it will point to the video stream PID if exists, otherwise to the audio stream PID. * @type {number} * @memberof TsProgramClockReferenceConfiguration */ pid?: number; /** * An integer value. Nominal time between MPEG Transport Stream PCRs in milliseconds. * @type {number} * @memberof TsProgramClockReferenceConfiguration */ interval?: number; constructor(obj?: Partial<TsProgramClockReferenceConfiguration>); } export default TsProgramClockReferenceConfiguration;