jamp3
    Preparing search index...
    interface Report {
        bitRate: number;
        channelMode?: string;
        channels: number;
        durationMS: number;
        filename: string;
        format: string;
        frames: number;
        header?: string;
        id3v1: boolean;
        id3v2: boolean;
        mode: string;
        tags: { id3v1?: IID3V1.Tag; id3v2?: IID3V2.Tag };
        warnings: IMP3Analyzer.Warning[];
    }
    Index

    Properties

    bitRate: number

    bitrate (average if bitrate mode is variable)

    channelMode?: string

    channel mode e.g. stereo, mono, single

    channels: number

    number of channels

    durationMS: number

    duration in milliseconds

    filename: string

    analyzed filename

    format: string

    name of format e.g. "MPEG 1 (ISO/IEC 11172-3) MPEG audio layer 3"

    frames: number

    number of audio frames

    header?: string

    type of head audio frame e.g. "Info" or "XING"

    id3v1: boolean

    has id3v1

    id3v2: boolean

    has id3v2

    mode: string

    bitrate mode e.g. CBR (constant), VBR (variable)

    tags: { id3v1?: IID3V1.Tag; id3v2?: IID3V2.Tag }

    tags data

    Type declaration

    • Optionalid3v1?: IID3V1.Tag

      the id3v1 tag data

    • Optionalid3v2?: IID3V2.Tag

      the id3v2 tag data

    warnings: IMP3Analyzer.Warning[]

    array of warnings