Synchronized Lyrics
data class SynchronizedLyrics @JvmOverloads constructor(val type: Int, val text: List<Pair<String, Int>>, val timestampFormat: Int, val language: String = "eng", val description: String = "") : FrameValue
Synchronised lyrics.
Requirements:
Type in range of 0-6. SynchronizedLyricsType
TimestampsFormat in range of 1-2. SynchronizedLyricsTimestampFormat
Language must be in ISO 639-2 format.
See also
Constructors
Link copied to clipboard
constructor(type: Int, timestampFormat: Int, vararg text: Pair<String, Int>, language: String = "eng", description: String = "")
constructor(type: Int, timestampFormat: Int, vararg text: Map<String, Int>, language: String = "eng", description: String = "")
constructor(type: SynchronizedLyricsType, timestampFormat: SynchronizedLyricsTimestampFormat, text: List<Pair<String, Int>>, language: String = "eng", description: String = "")
constructor(type: SynchronizedLyricsType, timestampFormat: SynchronizedLyricsTimestampFormat, vararg text: Pair<String, Int>, language: String = "eng", description: String = "")
constructor(type: SynchronizedLyricsType, timestampFormat: SynchronizedLyricsTimestampFormat, vararg text: Map<String, Int>, language: String = "eng", description: String = "")