All Downloader - v1.0.2-alpha
    Preparing search index...

    Interface Format

    Represents a video or audio format.

    interface Format {
        abr: null | number;
        acodec: null | string;
        download_url: string;
        ext: string;
        filesize: null | number;
        format: string;
        format_id: string;
        format_info:
            | null
            | {
                format?: string;
                name?: string;
                resolution?: string;
                resolutionName?: string;
                type?: string;
            };
        format_note: string;
        fps?: number;
        height: null
        | number;
        is_video?: boolean;
        vcodec: null | string;
        width: null | number;
    }
    Index

    Properties

    abr: null | number

    Audio bitrate in kbps, or null

    acodec: null | string

    Audio codec used (e.g., "aac", "mp3") or null if not applicable

    download_url: string

    URL to download the media

    ext: string

    File extension (e.g., "mp4", "mkv")

    filesize: null | number

    Size of the file in bytes, or null if unknown

    format: string

    Format description (e.g., "mp4", "webm")

    format_id: string

    Unique identifier for the format

    format_info:
        | null
        | {
            format?: string;
            name?: string;
            resolution?: string;
            resolutionName?: string;
            type?: string;
        }

    Additional format metadata

    format_note: string

    Additional notes about the format

    fps?: number

    Frames per second, optional

    height: null | number

    Video height in pixels, or null

    is_video?: boolean

    Indicates if this is a video format

    vcodec: null | string

    Video codec used (e.g., "h264") or null if not applicable

    width: null | number

    Video width in pixels, or null