THEOplayer Web SDK
    Preparing search index...

    Interface ID3AttachedPicture

    Represents an attached picture ID3 frame.

    interface ID3AttachedPicture {
        data: string | ArrayBuffer;
        description: string;
        id: "APIC" | "PIC";
        mimeType: string;
        pictureType: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    data: string | ArrayBuffer

    The data of the attached picture.


    - If ID3AttachedPicture.mimeType is '-->' the data is an URL for a picture resource as a string. Otherwise the data is an ArrayBuffer.

    description: string

    The description of the attached picture.

    id: "APIC" | "PIC"

    The identifier of the frame.

    mimeType: string

    The mime type of the attached picture.

    pictureType: number

    The type of the attached picture.


    - See section 4.14 of id3v2.4.0-frames - ID3.org.