THEOplayer > ID3SynchronizedLyricsText
Inherits from ID3BaseFrame. See parent page for inherited properties and methods.
Represents a synchronised lyrics/text ID3 frame.
Signature:
export interface ID3SynchronizedLyricsText extends ID3BaseFrame
Property |
Type |
Description |
---|---|---|
|
The content type of the frame, represented by a value from the following list: |
|
|
The description of the lyrics/text. |
|
|
List of lyrics/text. |
|
|
The format of the timestamp, represented by a value from the following list: |
|
|
The identifier of the frame. |
|
|
The language of the lyrics/text. |
The content type of the frame, represented by a value from the following list:
- 0
: The frame contains other data.
- 1
: The frame contains lyrics.
- 2
: The frame contains text transcription.
- 3
: The frame contains a movement/part name (e.g. "Adagio").
- 4
: The frame contains an events (e.g. "Don Quijote enters the stage").
- 5
: The frame contains a chord (e.g. "Bb F Fsus").
- 6
: The frame contains trivia/'pop up' information.
- 7
: The frame contains URLs to webpages.
- 8
: The frame contains URLs to images.
Signature:
contentType: number;
The description of the lyrics/text.
Signature:
description: string;
List of lyrics/text.
Signature:
entries: Array<{
text: string;
timestamp: number;
}>;
The format of the timestamp, represented by a value from the following list:
- 1
: Absolute time, 32 bit sized, in MPEG frames.
- 2
: Absolute time, 32 bit sized, in milliseconds.
Signature:
format: number;
The identifier of the frame.
Signature:
id: 'SYLT' | 'SLT';
The language of the lyrics/text.
Signature:
language: string;