TransSegment

@Serializable
data class TransSegment(val id: Int, val lyrics: String, val timeStamp: List<Double>, val trans: List<TransNote>)

A segment within a transcription file.

Constructors

Link copied to clipboard
constructor(id: Int, lyrics: String, timeStamp: List<Double>, trans: List<TransNote>)

Properties

Link copied to clipboard
Link copied to clipboard
val id: Int

Segment identifier

Link copied to clipboard

Text lyrics for this segment

Link copied to clipboard
Link copied to clipboard
@SerialName(value = "time_stamp")
val timeStamp: List<Double>

Start and end timestamps start, end in seconds

Link copied to clipboard

List of notes in this segment