-
Notifications
You must be signed in to change notification settings - Fork 22.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New pages: HTMLMediaElement API (played and seeking) #37006
Merged
+82
−0
Merged
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
3779776
New pages: htmlmediaelement API
estelle 5719e75
Merge branch 'main' into htmlmediaelement2
wbamberg 92ce5c4
Update files/en-us/web/api/htmlmediaelement/played/index.md
estelle 9ebf5e2
Update files/en-us/web/api/htmlmediaelement/played/index.md
estelle 31e6b61
Update files/en-us/web/api/htmlmediaelement/seeking/index.md
estelle 7ee6be8
Apply suggestions from code review
estelle 9565bdc
Update files/en-us/web/api/htmlmediaelement/played/index.md
estelle b85a0c0
Merge branch 'main' into htmlmediaelement2
estelle f821314
Update files/en-us/web/api/htmlmediaelement/played/index.md
estelle 8912b71
Update files/en-us/web/api/htmlmediaelement/seeking/index.md
estelle File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
title: "HTMLMediaElement: played property" | ||
short-title: played | ||
slug: Web/API/HTMLMediaElement/played | ||
page-type: web-api-instance-property | ||
browser-compat: api.HTMLMediaElement.played | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
The **`played`** read-only property of the {{domxref("HTMLMediaElement")}} interface indicates the time ranges the resource, an {{htmlelement("audio")}} or {{htmlelement("video")}} media file, has played. It returns a new {{domxref("TimeRanges")}} object that contains the ranges of the media source that the browser has played, if any, at the time the attribute is evaluated. | ||
|
||
## Value | ||
|
||
A {{domxref("TimeRanges")}} object; representing the time ranges that have been played. | ||
|
||
## Examples | ||
|
||
```js | ||
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 | ||
|
||
{{Specifications}} | ||
|
||
## Browser compatibility | ||
|
||
{{Compat}} | ||
|
||
## See also | ||
|
||
- {{domxref("HTMLMediaElement.seeked_event", "seeked")}} event | ||
- {{domxref("HTMLMediaElement.progress_event", "progress")}} event | ||
- {{domxref("HTMLMediaElement.seekable")}} | ||
- {{domxref("HTMLMediaElement.buffered")}} | ||
- {{domxref("HTMLVideoElement")}} | ||
- {{domxref("HTMLAudioElement")}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: "HTMLMediaElement: seeking property" | ||
short-title: seeking | ||
slug: Web/API/HTMLMediaElement/seeking | ||
page-type: web-api-instance-property | ||
browser-compat: api.HTMLMediaElement.seeking | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
The **`seeking`** read-only property of the {{domxref("HTMLMediaElement")}} interface is a Boolean indicating whether the resource, the {{htmlelement("audio")}} or {{htmlelement("audio")}}, is in the process of seeking to a new position. | ||
estelle marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
## Value | ||
|
||
A boolean value. | ||
|
||
## Examples | ||
|
||
```js | ||
const el = document.querySelector("video"); | ||
console.log(el.seeking); // true or false | ||
``` | ||
|
||
## Specifications | ||
|
||
{{Specifications}} | ||
|
||
## Browser compatibility | ||
|
||
{{Compat}} | ||
|
||
## See also | ||
|
||
- {{domxref("HTMLMediaElement.seeking_event", "seeking")}} event | ||
- {{domxref("HTMLMediaElement.seeked_event", "seeked")}} event | ||
- {{domxref("HTMLVideoElement")}} | ||
- {{domxref("HTMLAudioElement")}} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would be great to see this as a live sample.