Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
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>`).
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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.