ts-audio v0.4.5 Release Notes
Release Date: 2020-10-30 // almost 3 years ago-
ts-audio
is an agnostic and easy-to-use library to work with theAudioContext
API.What's new?
- ➕ Added logic to play the audio multiple times using the same object
- 🛠 Fixed bug that played the playlist always in loop
- 🔨 Refactored code
Previous changes from v0.4.2
-
ts-audio
is an agnostic and easy-to-use library to work with theAudioContext
API.What's new?
Extended API from
AudioPlaylist
, adding:loop
parametervolume
andloop
properties
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.7playlist.volume = 05