UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

34 lines (33 loc) 1.29 kB
import PerTitleConfiguration from './PerTitleConfiguration'; /** * @export * @class H265PerTitleConfiguration */ export declare class H265PerTitleConfiguration extends PerTitleConfiguration { /** * This factor is used to calculate the minBitrate of the codec configuration for the generated representations as a multiple of the targetBitrate * @type {number} * @memberof H265PerTitleConfiguration */ codecMinBitrateFactor?: number; /** * This factor is used to calculate the maxBitrate of the codec configuration for the generated representations as a multiple of the targetBitrate * @type {number} * @memberof H265PerTitleConfiguration */ codecMaxBitrateFactor?: number; /** * This factor is used to calculate the bufsize of the codec configuration for the generated representations as a multiple of the targetBitrate * @type {number} * @memberof H265PerTitleConfiguration */ codecBufsizeFactor?: number; /** * Desired target quality of the highest representation expressed as CRF value * @type {number} * @memberof H265PerTitleConfiguration */ targetQualityCrf?: number; constructor(obj?: Partial<H265PerTitleConfiguration>); } export default H265PerTitleConfiguration;