SpeechSegment.swift
610 字节
//
// SpeechSegment.swift
// SherpaOnnxSubtitle
//
// Created by knight on 2023/9/23.
//
import Foundation
class SpeechSegment: CustomStringConvertible {
let start: Float
let end: Float
let text: String
init(start: Float, duration: Float, text: String) {
self.start = start
end = start + duration
self.text = text
}
public var description: String {
var s: String
s = TimeInterval(start).hourMinuteSecondMS
s += " --> "
s += TimeInterval(end).hourMinuteSecondMS
s += "\n"
s += text
return s
}
}