Interface ID3UnsynchronisedLyricsTextTranscription

Represents a unsynchronised lyrics/text transcription ID3 frame.

interface ID3UnsynchronisedLyricsTextTranscription {
    description: string;
    id: "USLT" | "ULT";
    language: string;
    text: string;
}

Hierarchy (view full)

Properties

description: string

The description of the lyrics/text.

id: "USLT" | "ULT"

The identifier of the frame.

language: string

The language of the lyrics/text.

text: string

The content of the lyrics/text.

Generated using TypeDoc