mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-14 07:54:50 +02:00
feat: now playing chapter track
This commit is contained in:
parent
793f0c05f7
commit
2b1667e532
11 changed files with 91 additions and 11 deletions
|
@ -39,3 +39,13 @@ class Chapter: EmbeddedObject, Codable {
|
|||
try container.encode(title, forKey: .title)
|
||||
}
|
||||
}
|
||||
|
||||
extension Chapter {
|
||||
func getRelativeChapterCurrentTime(sessionCurrentTime: Double) -> Double {
|
||||
return sessionCurrentTime - self.start
|
||||
}
|
||||
|
||||
func getRelativeChapterEndTime() -> Double {
|
||||
return self.end - self.start
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue