1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
yattee/Model/Segment.swift

47 lines
980 B
Swift
Raw Normal View History

2021-06-18 04:13:29 +05:30
import CoreMedia
import Foundation
import SwiftyJSON
// swiftlint:disable:next final_class
class Segment: ObservableObject, Hashable {
let category: String
let segment: [Double]
let uuid: String
let videoDuration: Int
2021-06-18 15:47:01 +05:30
var start: Double {
segment.first!
}
var end: Double {
segment.last!
}
2021-10-23 22:19:45 +05:30
var endTime: CMTime {
CMTime(seconds: end, preferredTimescale: 1000)
}
2021-06-18 04:13:29 +05:30
init(category: String, segment: [Double], uuid: String, videoDuration: Int) {
self.category = category
self.segment = segment
self.uuid = uuid
self.videoDuration = videoDuration
}
func timeInSegment(_ time: CMTime) -> Bool {
2021-06-18 15:47:01 +05:30
(start ... end).contains(time.seconds)
2021-06-18 04:13:29 +05:30
}
func hash(into hasher: inout Hasher) {
hasher.combine(uuid)
}
static func == (lhs: Segment, rhs: Segment) -> Bool {
lhs.uuid == rhs.uuid
}
func title() -> String {
category
}
}