
Security News
MCP Steering Committee Launches Official MCP Registry in Preview
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
@internetarchive/audio-element
Advanced tools
A LitElement wrapper for the HTML <audio>
element.
yarn add @internetarchive/audio-element
// audio-element.js
import AudioELement from '@internetarchive/audio-element';
export default AudioElement;
<!-- index.html -->
<script type="module">
import './audio-element.js';
</script>
<audio-element></audio-element>
<script>
const audioElement = document.querySelector('audio-element');
// set volume
audioElement.volume = 0.75;
// set playback rate
audioElement.playbackRate = 0.75;
// set audio sources
audioElement.sources = [
{url: "./spring.ogg", mimetype: "audio/ogg"}
{url: "./spring.mp3", mimetype: "audio/mpeg"}
]
// listen for time changes; this updates many times per second as your media plays back
audioElement.addEventListener('timeupdate', e => {
console.log('Current time has changed, new value:', e.detail.currentTime);
});
// listen for track duration changes like on load
audioElement.addEventListener('durationchange', e => {
console.log('Track duration has changed, new value:', e.detail.duration);
});
// start playing
audioElement.play();
// pause playing
audioElement.pause();
// seek to 10s
audioElement.seekTo(10);
// seek by 10s
audioElement.seekBy(10);
</script>
yarn install
yarn start // start development server and typescript compiler
yarn test
yarn test:bs
yarn storybook
yarn lint
FAQs
An Audio Element that wraps the HTML audio tag.
The npm package @internetarchive/audio-element receives a total of 13 weekly downloads. As such, @internetarchive/audio-element popularity was classified as not popular.
We found that @internetarchive/audio-element demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 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
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.