UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 641 B
/** * @export * @class TsStreamConfiguration */ export declare class TsStreamConfiguration { /** * The UUID of the stream to which this configuration belongs to. This has to be a ID of a stream that has been added to the current muxing. (required) * @type {string} * @memberof TsStreamConfiguration */ streamId?: string; /** * An integer value. MPEG Transport Stream Packet Identifier (PID) for this stream. (required) * @type {number} * @memberof TsStreamConfiguration */ pid?: number; constructor(obj?: Partial<TsStreamConfiguration>); } export default TsStreamConfiguration;