diff --git a/client/components/AudioPlayer.vue b/client/components/AudioPlayer.vue index 597c9097..1a8cf911 100644 --- a/client/components/AudioPlayer.vue +++ b/client/components/AudioPlayer.vue @@ -8,7 +8,16 @@
{{ totalDurationPretty }}
-Id | +Title | +Start | +End | +
---|---|---|---|
+ {{ chapter.id }} + |
+ + {{ chapter.title }} + | ++ {{ $secondsToTimestamp(chapter.start) }} + | ++ {{ $secondsToTimestamp(chapter.end) }} + | +
+ +
+ Experimental Feature! If your audiobook has multiple tracks, this will merge them into a single M4B audiobook file.
Preparing downloads can take several minutes and will be stored in /metadata/downloads. After the download is ready, it will remain available for 60 minutes, then be
+ deleted.
Single audio file
+{{ isSingleTrack ? 'Single Track' : 'M4B Audiobook File' }}
Download Failed
diff --git a/client/components/ui/Btn.vue b/client/components/ui/Btn.vue index 734e0d76..6691470b 100644 --- a/client/components/ui/Btn.vue +++ b/client/components/ui/Btn.vue @@ -59,7 +59,7 @@ export default {