Javascript examples for DOM HTML Element:Video
The seekable property returns a TimeRanges object, which represents ranges of the video that are available for seeking for user.
This property is read-only.
Type | Description |
---|---|
TimeRanges Object | Represents the seekable parts of the video. |
TimeRanges Object Properties:
The first seekable range is index 0
The following code shows how to get the first seekable range (part) of the video in seconds:
<!DOCTYPE html> <html> <body> <video id="myVideo" width="320" height="240" controls> <source src="your.mp4" type="video/mp4"> <source src="your.ogg" type="video/ogg"> Your browser does not support the video tag. </video>/*from w w w . ja v a 2 s . co m*/ <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myVideo"); document.getElementById("demo").innerHTML = "Start: " + x.seekable.start(0) + " End: " + x.seekable.end(0); } </script> </body> </html>