The TimeRanges
interface is used to represent a set of time ranges, primarily for the purpose of tracking which portions of media have been buffered when loading it for use by the <audio>
and <video>
elements.
A TimeRanges
object includes one or more ranges of time, each specified by a starting and ending time offset. You reference each time range by using the start()
and end()
methods, passing the index number of the time range you want to retrieve.
The term "normalized TimeRanges object" indicates that ranges in such an object are ordered, don't overlap, aren't empty, and don't touch (adjacent ranges are folded into one bigger range).
TimeRanges.length
Read only
unsigned long
representing the number of time ranges represented by the time range object.TimeRanges.start()
TimeRanges.end()
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'TimeRanges' in that specification. | Living Standard | Initial definition |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes |
end |
Yes | Yes | Yes | Yes | Yes | Yes |
length |
Yes | Yes | Yes | Yes | Yes | ? |
start |
Yes | Yes | Yes | Yes | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
end |
Yes | Yes | Yes | Yes | Yes | Yes | Yes |
length |
Yes | Yes | Yes | Yes | Yes | Yes | Yes |
start |
Yes | Yes | Yes | Yes | Yes | Yes | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/TimeRanges