taglib-ts
    Preparing search index...

    Interface Tags

    Plain-object representation of audio file tags. All string fields default to an empty string, numeric fields default to 0.

    interface Tags {
        album: string;
        artist: string;
        audioProperties: AudioPropertiesInfo | null;
        comment: string;
        genre: string;
        title: string;
        track: number;
        year: number;
    }
    Index

    Properties

    album: string

    Album name.

    artist: string

    Primary artist or performer.

    audioProperties: AudioPropertiesInfo | null

    Audio properties extracted from the stream, or null if the format does not provide them or they were not requested.

    comment: string

    Free-form comment.

    genre: string

    Genre string (may be an ID3v1 genre name or a custom string).

    title: string

    Track title.

    track: number

    Track number within the album (0 if not set).

    year: number

    Release year (0 if not set).