Baseline Widely available
The played
read-only property of the HTMLMediaElement
interface indicates the time ranges the resource, an <audio>
or <video>
media file, has played. It returns a new TimeRanges
object that contains the ranges of the media source that the browser has played, if any, at the time the attribute is evaluated.
A TimeRanges
object; representing the time ranges that have been played.
const media = document.querySelector("audio");
const playedTimeRanges = media.played;
let timePlayed = 0;
// calculate the total time the media has played
for (let i = 0; i < playedTimeRanges.length; i++) {
timePlayed += playedTimeRanges.end(i) - playedTimeRanges.start(i);
}
console.log(`The media played for a total of ${timePlayed} seconds.`);
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4