Interface ID3Comments

Represents a comments ID3 frame.

interface ID3Comments {
    description: string;
    id: "COMM" | "COM";
    language: string;
    text: string;
}

Hierarchy (view full)

Properties

description: string

The description of the comments.

id: "COMM" | "COM"

The identifier of the frame.

language: string

The language of the comments.

text: string

The content of the comments.

Generated using TypeDoc