@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
33 lines (32 loc) • 957 B
TypeScript
/**
* @export
* @class ProgressiveTsMuxingInformationByteRanges
*/
export declare class ProgressiveTsMuxingInformationByteRanges {
/**
* Number of the segment (starting at 0) (required)
* @type {number}
* @memberof ProgressiveTsMuxingInformationByteRanges
*/
segmentNumber?: number;
/**
* The position of the first byte of the segment
* @type {number}
* @memberof ProgressiveTsMuxingInformationByteRanges
*/
startBytes?: number;
/**
* The position of the last byte of the segment
* @type {number}
* @memberof ProgressiveTsMuxingInformationByteRanges
*/
endBytes?: number;
/**
* The duration of the segment in seconds
* @type {number}
* @memberof ProgressiveTsMuxingInformationByteRanges
*/
duration?: number;
constructor(obj?: Partial<ProgressiveTsMuxingInformationByteRanges>);
}
export default ProgressiveTsMuxingInformationByteRanges;