Audio seekable Property
Example
Get the first seekable range (part) of the audio in seconds:
var x = document.getElementById("myAudio");
document.getElementById("demo").innerHTML
= "Start: " + x.seekable.start(0)
+ " End: " + x.seekable.end(0);
The result of x could be:
Start: 0 End: 12.612
Try it yourself »
Definition and Usage
The seekable property returns a TimeRanges object.
The TimeRanges object represents ranges of the audio that are available for seeking for user.
A seekable range is a time-range of audio where the user can seek (move playback position) to.
For non-streaming audios it is often possible to seek anywhere in the audio even before it has been buffered.
Note: This property is read-only.
Browser Support
The seekable property is supported in all major browsers.
Note: This property is not supported in Internet Explorer 8 and earlier.
Syntax
audioObject.seekable
Return Value
Type | Description |
---|---|
TimeRanges Object | Represents the seekable parts of the audio. TimeRanges Object Properties:
Note: The first seekable range is index 0 |
Audio Object