Dart API Referencedart:htmlTimeRanges

TimeRanges Interface

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.

Methods

Code num end(int index) #

Returns the time for the end of the specified range.
num end(int index);

Code num start(int index) #

Returns the time for the start of the range with the specified index.
num start(int index);

Fields

Code final int length #

The number of time ranges represented by the time range object. Read only.
final int length;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.