@jellyfin/sdk
    Preparing search index...

    Interface TranscodingInfo

    Class holding information on a running transcode.

    TranscodingInfo

    interface TranscodingInfo {
        AudioChannels?: number | null;
        AudioCodec?: string | null;
        Bitrate?: number | null;
        CompletionPercentage?: number | null;
        Container?: string | null;
        Framerate?: number | null;
        HardwareAccelerationType?: HardwareAccelerationType;
        Height?: number | null;
        IsAudioDirect?: boolean;
        IsVideoDirect?: boolean;
        TranscodeReasons?: undefined;
        VideoCodec?: string | null;
        Width?: number | null;
    }
    Index

    Properties

    AudioChannels?: number | null

    Gets or sets the audio channels.

    TranscodingInfo

    AudioCodec?: string | null

    Gets or sets the thread count used for encoding.

    TranscodingInfo

    Bitrate?: number | null

    Gets or sets the bitrate.

    TranscodingInfo

    CompletionPercentage?: number | null

    Gets or sets the completion percentage.

    TranscodingInfo

    Container?: string | null

    Gets or sets the thread count used for encoding.

    TranscodingInfo

    Framerate?: number | null

    Gets or sets the framerate.

    TranscodingInfo

    HardwareAccelerationType?: HardwareAccelerationType

    TranscodingInfo

    Height?: number | null

    Gets or sets the video height.

    TranscodingInfo

    IsAudioDirect?: boolean

    Gets or sets a value indicating whether the audio is passed through.

    TranscodingInfo

    IsVideoDirect?: boolean

    Gets or sets a value indicating whether the video is passed through.

    TranscodingInfo

    TranscodeReasons?: undefined

    Gets or sets the transcode reasons.

    TranscodingInfo

    VideoCodec?: string | null

    Gets or sets the thread count used for encoding.

    TranscodingInfo

    Width?: number | null

    Gets or sets the video width.

    TranscodingInfo