Support absolute seeks on Disney+ by automatically translating them to relative jumps

This commit is contained in:
Timo
2026-07-02 13:25:11 +02:00
parent 54b806d270
commit 71fa6e7315
+8 -1
View File
@@ -323,7 +323,14 @@
urls: ['disneyplus.com'],
matches() { return matchesPlayerUrls(this.urls); },
getTimeline: getDisneyPlusTimeline,
clickRelativeSeek: clickDisneyPlusRelativeSeek,
clickRelativeSeek: clickDisneyPlusRelativeSeek,
getDebug(video) {
return {
name: this.name,
key: 'disneyPlus',
urls: this.urls,
timeline: getDisneyPlusTimeline(video),
timelineCandidates: lastDisneyPlusTimelineCandidates,
seekButtons: getDisneyPlusSeekButtonLabels()
};
}