Replies: 2 comments
-
I did recently fix it so that Is that sufficient for your needs? |
Beta Was this translation helpful? Give feedback.
-
@gkatsev thanks for your reply 👍. I actually saw the fix #7527 back when I wrote my proposal. However, we have a slightly more complex use case for legal reasons. We use middleware that takes care of blocking certain portions of a media when the user seeks which leads to unwanted effects. More generally, having the ability to disable |
Beta Was this translation helpful? Give feedback.
-
Videojs v7.9.0 introduced the
fastSeek
, it's a great feature. However, when a media haschapters
, this results in starting the playback a few seconds before the beginning of the chapter. On our use case we had to do something likeplayer.tech('Html5').el().fastSeek = undefined;
to avoid having a weird behavior, which is a bit sad 😢One could imagine having a property to disable the
fastSeek
like :In the
Html5
tech :Beta Was this translation helpful? Give feedback.
All reactions