Skip to content

ts-audio v0.4.2

Compare
Choose a tag to compare
@EvandroLG EvandroLG released this 26 Jul 21:11
· 219 commits to master since this release

ts-audio is an agnostic and easy-to-use library to work with the AudioContext API.

What's new?

import { AudioPlaylist } from 'ts-audio';

const playlist = AudioPlaylist({
  files: ['./songOne.mp3', './songTwo.mp3', './songThree.mp3'],
  volume: 0.7,
  loop: true
});

playlist.play();
playlist.volume; // 0.7
playlist.volume = 05