Skip to content

Releases: EvandroLG/ts-audio

ts-audio v0.4.0

13 Jul 21:22
Compare
Choose a tag to compare

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

What's new?

  • Created AudioPlaylist component. To see more details, check our documentation.
import { AudioPlaylist } from 'ts-audio';

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

playlist.play();
  • Updated examples, adding a complete example of how to use AudioPlaylist
  • Created end event to Audio component. For more details, see our documentation.