The HTMLMediaElement.autoplay
property reflects the autoplay
HTML attribute, indicating whether playback should automatically begin as soon as enough media is available to do so without interruption.
A media element whose source is a MediaStream
and whose autoplay
property is true
will begin playback when it becomes active (that is, when MediaStream.active
becomes true
).
Note: Sites which automatically play audio (or videos with an audio track) can be an unpleasant experience for users, so it should be avoided when possible. If you must offer autoplay functionality, you should make it opt-in (requiring a user to specifically enable it). However, this can be useful when creating media elements whose source will be set at a later time, under user control.
HTMLMediaElement.autoplay = true | false; var autoplay = HTMLMediaElement.autoplay;
A Boolean
whose value is true
if the media element will begin playback as soon as enough content has loaded to allow it to do so without interruption.
Note: Some browsers offer users the ability to override autoplay
in order to prevent disruptive audio or video from playing without permission or in the background. Do not rely on autoplay
actually starting playback.
...
<video id="video" controls> <source src="https://player.vimeo.com/external/250688977.sd.mp4?s=d14b1f1a971dde13c79d6e436b88a6a928dfe26b&profile_id=165"> </video>
*** Disable autoplay (recommended) *** false is the default value document.querySelector('#video').autoplay = false;
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'HTMLMediaElement.autoplay' in that specification. | Living Standard | No change from HTML5 |
HTML5 The definition of 'HTMLMediaElement.autoplay' in that specification. | Recommendation | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 3.5 | 9 | 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 | ? |
HTMLMediaElement
.<audio>
and <video>
elements
© 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/HTMLMediaElement/autoplay