UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

34 lines (33 loc) 1.09 kB
/** * Aggregate statistics of per-segment total processing duration over a rolling window of completed segments. * @export * @class LiveEncodingHeartbeatTotalProcessingStatsMs */ export declare class LiveEncodingHeartbeatTotalProcessingStatsMs { /** * Minimum total processing duration in milliseconds. * @type {number} * @memberof LiveEncodingHeartbeatTotalProcessingStatsMs */ min?: number; /** * Maximum total processing duration in milliseconds. * @type {number} * @memberof LiveEncodingHeartbeatTotalProcessingStatsMs */ max?: number; /** * Mean total processing duration in milliseconds. * @type {number} * @memberof LiveEncodingHeartbeatTotalProcessingStatsMs */ mean?: number; /** * Median total processing duration in milliseconds. * @type {number} * @memberof LiveEncodingHeartbeatTotalProcessingStatsMs */ median?: number; constructor(obj?: Partial<LiveEncodingHeartbeatTotalProcessingStatsMs>); } export default LiveEncodingHeartbeatTotalProcessingStatsMs;