Socket
Socket
Sign inDemoInstall

@internetarchive/audio-element

Package Overview
Dependencies
6
Maintainers
15
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @internetarchive/audio-element

An Audio Element that wraps the HTML audio tag.


Version published
Maintainers
15
Created

Readme

Source

<audio-element>

A LitElement wrapper for the HTML <audio> element.

Audio Element

Installation

yarn add @internetarchive/audio-element

Usage

// 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>

Development

Prerequisite

yarn install

Start Development Server

yarn start  // start development server and typescript compiler

Testing

yarn test

Testing via browserstack

yarn test:bs

Demoing using storybook

yarn storybook

Linting

yarn lint

FAQs

Last updated on 14 Jul 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc