web-audio-api
web-audio-api copied to clipboard
AudioBufferSourceNode.start() fails silently
AudioBufferSourceNode.start() fails silently... literally.
The most simple example just starts the audio buffer playing from the beginning — you don't need to specify any parameters in this case:
source.start();
But you do need the first parameter. start(0) works whereas start() does not.