Represents a transcoder profile.

interface TranscoderProfile {
    description: string;
    frameRate: number;
    height: number;
    isDefault: boolean;
    name: string;
    passThrough: boolean;
    profileId: string;
}

Properties

description: string

Description of the transcoder profile.

frameRate: number

Frame rate of input stream.

height: number

Resolution of input stream specified in video height.

isDefault: boolean
name: string

Name of the transcoder profile.

passThrough: boolean
profileId: string

Identifier of the transcoder profile.