Waud Versions Save

Web Audio Library

0.9.6

7 years ago
  • minor updates

0.9.4

7 years ago
  • bug fixes

0.9.2

7 years ago
  • added optional parameter to WaudBase64Pack to create and decode sounds sequentially.

http://www.waudjs.com/api/classes/WaudBase64Pack.html

0.9.0

7 years ago
  • updated base64 loading logic for better IE support

0.8.1

7 years ago
  • added global getVolume and setVolume methods
  • added validations for volume value

0.8.0

7 years ago
  • bug fixes #19 & #20

0.7.8

7 years ago
  • bug fixes related to playbackRate
  • added playbackRate to global default options
  • added sound options parameter to Base64Pack

0.7.6

7 years ago
  • added playbackRate method globally as well as for each audio instance.
// To set playbackRate globally on all sounds
Waud.playbackRate(1.5);

// To set playbackRate on an individual sound
snd.playbackRate(1.5);

If no parameter is passed the method will return the current playback rate.

0.7.5

7 years ago
  • added autoStop method.
snd.autoStop(false);

By default, autostop is set to true which means the sound will always stop and play from the start whenever play is called.

If autostop is set to false sound will continue playing and new instance will start playing on top of that.

0.7.4

7 years ago
  • removed duration property and added getDuration() method