Interface ID3GenericEncapsulatedObject

Represents a general encapsulated object ID3 frame.

interface ID3GenericEncapsulatedObject {
    data: ArrayBuffer;
    description: string;
    fileName: string;
    id: "GEOB" | "GEO";
    mimeType: string;
}

Hierarchy (view full)

Properties

The data of the encapsulated object.

description: string

The description of the encapsulated object.

fileName: string

The file name of the encapsulated object.

id: "GEOB" | "GEO"

The identifier of the frame.

mimeType: string

The mime type of the encapsulated object.

Generated using TypeDoc