web api instance method
HTMLMediaElement: fastSeek() method
The HTMLMediaElement.fastSeek() method quickly seeks the
media to the new time with precision tradeoff.
[!NOTE] If you need to seek with precision, you should set
HTMLMediaElement.currentTimeinstead.
Syntax
fastSeek(time)
Parameters
time- : A double.
Return value
None (undefined).
Examples
This example quickly seeks to 20-second position of the video element.
let myVideo = document.getElementById("myVideoElement");
myVideo.fastSeek(20);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- HTMLMediaElement.currentTime for seeking without precision tradeoff