
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
can-autoplay
Advanced tools
The auto-play feature detection in HTMLMediaElement (<audio> or <video>).
Table of contents:
npm install can-autoplay
Build files are available in the build/ directory. Bundlers will choose get the correct file chosen for them but if you just want to include it on the page, grab the build/can-autoplay.js file.
audio(options)Parameters:
<Boolean>, check if auto-play is possible for an inline playback, default value is false<Boolean>, check if auto-play is possible for a muted content<Number>, timeout for a check, default value is 250 msReturns:
<Promise>, resolves to a <Object>:
result <Boolean>, true - if auto-play is possibleerror <Error>, internal or timeout Error objectcanAutoplay.audio().then(({result}) => {
if (result === true) {
// Can auto-play
} else {
// Can not auto-play
}
})
video(options)Parameters:
<Boolean>, check if auto-play is possible for an inline playback, default value is false<Boolean>, check if auto-play is possible for a muted content<Number>, timeout for a check, default value is 250 msReturns:
<Promise>, resoles to a <Object>:
result <Boolean>, true - if auto-play is possibleerror <Error>, internal or timeout Error objectcanAutoplay.video().then(({result}) => {
if (result === true) {
// Can autoplay
} else {
// Can not autoplay
}
})
import canAutoPlay from 'can-autoplay';
canAutoPlay
.video({timeout: 100, muted: true})
.then(({result, error}) => {
if(result === false){
console.warn('Error did occur: ', error)
}
})
audio.mp3. Created by Weston Ruter (@westonruter). Smallest possible (<0.000001 seconds long) audio file.video.mp4. Source: https://github.com/mathiasbynens/smallIf it's required to have a legacy browser support you could use latest v2.x.x version of the library.
FAQs
The auto-play feature detection in HTMLMediaElement (`` or `<video>`).
The npm package can-autoplay receives a total of 47,424 weekly downloads. As such, can-autoplay popularity was classified as popular.
We found that can-autoplay demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.