@dolbyio/dolbyio-rest-apis-client - v6.0.0
    Preparing search index...

    Interface TranscoderProfile

    Represents a transcoder profile.

    interface TranscoderProfile {
        description: string;
        frameRate: number;
        height: number;
        isDefault?: boolean;
        layers: {
            allowTransrating?: boolean;
            bitrate?: number;
            codec?: string;
            fps?: number;
            height?: number;
            intraPeriod?: number;
            width?: number;
        }[];
        name: string;
        passThrough: boolean;
        profileId: string;
    }
    Index

    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
    layers: {
        allowTransrating?: boolean;
        bitrate?: number;
        codec?: string;
        fps?: number;
        height?: number;
        intraPeriod?: number;
        width?: number;
    }[]

    The layers the Transcoder will produce for distribution. These values are pre-determined following the Millicast bitrate ladder as step-down layers from the overall Transcoder configuration.

    Type Declaration

    • OptionalallowTransrating?: boolean

      Allow transrating of layer.

    • Optionalbitrate?: number

      The target bitrate for this layer.

    • Optionalcodec?: string

      The codec used for this layer.

    • Optionalfps?: number

      The target frames-per-second for this layer.

    • Optionalheight?: number

      The height for this layer.

    • OptionalintraPeriod?: number

      The I-Frame interval for this layer.

    • Optionalwidth?: number

      The width for this layer.

    name: string

    Name of the transcoder profile.

    passThrough: boolean

    Indicates that the top layer is used as is and bypasses transcoding without additional processing.

    profileId: string

    Identifier of the transcoder profile.