Add per-chapter auto skip intro/outro for web player

Per-book skip settings stored in browser localStorage. Checks each
chapter's intro/outro zone during playback and automatically seeks
past them, matching the behavior of the Android app implementation.
This commit is contained in:
Lunatic 2026-02-27 14:33:19 +08:00
parent 1d0b7e383a
commit d157388680
3 changed files with 159 additions and 2 deletions

View file

@ -308,6 +308,9 @@ export default {
if (this.sleepTimerType === this.$constants.SleepTimerTypes.CHAPTER && this.sleepTimerSet) {
this.checkChapterEnd()
}
// intro/outro
this.checkAndSkipIntroOutro(time)
},
setDuration(duration) {
this.totalDuration = duration
@ -543,6 +546,81 @@ export default {
this.playerHandler.resetPlayer() // Closes player without reporting to server
this.$store.commit('setMediaPlaying', null)
}
},
//
getBookSkipSettings() {
if (!this.streamLibraryItem) return null
const bookSkipSettings = this.$store.getters['user/getUserSetting']('bookSkipSettings') || {}
return bookSkipSettings[this.streamLibraryItem.id] || {}
},
// intro/outro
checkAndSkipIntroOutro(currentTime) {
const skipSettings = this.getBookSkipSettings()
if (!skipSettings) return
const doSkipIntro = skipSettings.skipIntro && skipSettings.introDuration > 0
const doSkipOutro = skipSettings.skipOutro && skipSettings.outroDuration > 0
if (!doSkipIntro && !doSkipOutro) return
if (!this.isPlaying || !this.chapters.length) return
//
if (this._isSkipping) {
if (this._skipTarget != null && currentTime >= this._skipTarget - 0.5) {
this._isSkipping = false
this._skipTarget = null
}
return
}
const chapter = this.chapters.find((ch) => ch.start <= currentTime && currentTime < ch.end)
if (!chapter) return
const introDuration = doSkipIntro ? skipSettings.introDuration : 0
const outroDuration = doSkipOutro ? skipSettings.outroDuration : 0
const introEndTime = Math.min(chapter.start + introDuration, chapter.end)
const outroStartTime = Math.max(chapter.end - outroDuration, chapter.start)
// introoutro
if (doSkipIntro && doSkipOutro && introEndTime > outroStartTime) return
// intro
if (doSkipIntro && currentTime < introEndTime) {
const target = introEndTime + 0.5
this._isSkipping = true
this._skipTarget = target
this.seek(target)
return
}
// outro
if (doSkipOutro && currentTime >= outroStartTime) {
const chapterIndex = this.chapters.indexOf(chapter)
const nextChapter = this.chapters[chapterIndex + 1]
if (nextChapter) {
// skipIntrointro
let target = nextChapter.start
if (doSkipIntro) {
const nextIntroEnd = Math.min(nextChapter.start + introDuration, nextChapter.end)
const nextOutroStart = Math.max(nextChapter.end - outroDuration, nextChapter.start)
// intro/outro
if (nextIntroEnd <= nextOutroStart) {
target = nextIntroEnd + 0.5
}
}
this._isSkipping = true
this._skipTarget = target
this.seek(target)
} else {
//
this._isSkipping = true
this._skipTarget = chapter.end
this.seek(chapter.end)
}
}
}
},
mounted() {

View file

@ -17,6 +17,29 @@
<div class="flex items-center mb-4">
<ui-select-input v-model="playbackRateIncrementDecrement" :label="$strings.LabelPlaybackRateIncrementDecrement" menuMaxHeight="250px" :items="playbackRateIncrementDecrementValues" @input="setPlaybackRateIncrementDecrementAmount" />
</div>
<!-- 书籍跳过配置 -->
<div class="border-t pt-4 mt-6" v-if="currentLibraryItemId">
<h4 class="text-lg font-medium mb-4">本书跳过设置</h4>
<div class="flex items-center mb-4">
<ui-toggle-switch v-model="skipIntro" @input="setSkipIntro" />
<div class="pl-4 flex-1">
<span>跳过开头</span>
</div>
<ui-text-input v-model="introDuration" type="number" min="0" max="60" @input="setIntroDuration" class="w-20" />
<span class="ml-2 text-sm text-gray-400"></span>
</div>
<div class="flex items-center mb-4">
<ui-toggle-switch v-model="skipOutro" @input="setSkipOutro" />
<div class="pl-4 flex-1">
<span>跳过结尾</span>
</div>
<ui-text-input v-model="outroDuration" type="number" min="0" max="60" @input="setOutroDuration" class="w-20" />
<span class="ml-2 text-sm text-gray-400"></span>
</div>
</div>
</div>
</modals-modal>
</template>
@ -40,7 +63,14 @@ export default {
jumpForwardAmount: 10,
jumpBackwardAmount: 10,
playbackRateIncrementDecrementValues: [0.1, 0.05],
playbackRateIncrementDecrement: 0.1
playbackRateIncrementDecrement: 0.1,
//
currentLibraryItemId: null,
skipIntro: false,
introDuration: 10,
skipOutro: false,
outroDuration: 10
}
},
computed: {
@ -69,19 +99,67 @@ export default {
this.playbackRateIncrementDecrement = val
this.$store.dispatch('user/updateUserSettings', { playbackRateIncrementDecrement: val })
},
//
setSkipIntro() {
this.updateBookSkipSetting('skipIntro', this.skipIntro)
},
setIntroDuration() {
this.introDuration = Math.max(0, Math.min(60, parseInt(this.introDuration) || 0))
this.updateBookSkipSetting('introDuration', this.introDuration)
},
setSkipOutro() {
this.updateBookSkipSetting('skipOutro', this.skipOutro)
},
setOutroDuration() {
this.outroDuration = Math.max(0, Math.min(60, parseInt(this.outroDuration) || 0))
this.updateBookSkipSetting('outroDuration', this.outroDuration)
},
updateBookSkipSetting(key, value) {
if (!this.currentLibraryItemId) return
const bookSkipSettings = { ...this.$store.getters['user/getUserSetting']('bookSkipSettings') || {} }
if (!bookSkipSettings[this.currentLibraryItemId]) {
bookSkipSettings[this.currentLibraryItemId] = {}
}
bookSkipSettings[this.currentLibraryItemId][key] = value
this.$store.dispatch('user/updateUserSettings', { bookSkipSettings })
},
settingsUpdated() {
this.useChapterTrack = this.$store.getters['user/getUserSetting']('useChapterTrack')
this.jumpForwardAmount = this.$store.getters['user/getUserSetting']('jumpForwardAmount')
this.jumpBackwardAmount = this.$store.getters['user/getUserSetting']('jumpBackwardAmount')
this.playbackRateIncrementDecrement = this.$store.getters['user/getUserSetting']('playbackRateIncrementDecrement')
//
this.loadBookSkipSettings()
},
loadBookSkipSettings() {
// ID
const mediaPlayerContainer = this.$root.$refs.mediaPlayerContainer || this.$parent.$refs.mediaPlayerContainer
if (mediaPlayerContainer && mediaPlayerContainer.streamLibraryItem) {
this.currentLibraryItemId = mediaPlayerContainer.streamLibraryItem.id
const bookSkipSettings = this.$store.getters['user/getUserSetting']('bookSkipSettings') || {}
const currentBookSettings = bookSkipSettings[this.currentLibraryItemId] || {}
this.skipIntro = currentBookSettings.skipIntro || false
this.introDuration = currentBookSettings.introDuration || 10
this.skipOutro = currentBookSettings.skipOutro || false
this.outroDuration = currentBookSettings.outroDuration || 10
} else {
this.currentLibraryItemId = null
}
}
},
mounted() {
this.settingsUpdated()
this.$eventBus.$on('user-settings', this.settingsUpdated)
this.$eventBus.$on('playback-session-changed', this.loadBookSkipSettings)
},
beforeDestroy() {
this.$eventBus.$off('user-settings', this.settingsUpdated)
this.$eventBus.$off('playback-session-changed', this.loadBookSkipSettings)
}
}
</script>

View file

@ -18,7 +18,8 @@ export const state = () => ({
authorSortBy: 'name',
authorSortDesc: false,
jumpForwardAmount: 10,
jumpBackwardAmount: 10
jumpBackwardAmount: 10,
bookSkipSettings: {} // 书籍跳过配置 { [libraryItemId]: { skipIntro, introDuration, skipOutro, outroDuration } }
}
})