audio-loader
audio-loader copied to clipboard
A simple but flexible AudioBuffer loader for Web Audio API
pretty please could you generate types.
I cannot be sure this is not a problem actually with the wavesurfer.js library I am using, or something with my usage of the audio-loader library. I created one same...
I ran into the following error when attempting to use `window.loadAudio()` from a browser environment: `Uncaught TypeError: options.fetch is not a function`. This seems to be because the `window.loadAudio()` function...
Hello I'm using this load('http://path/to/file.js').then .. to load midijs soundfont Any way to bundle my sound in the js file like this? import SoundJs from 'path/to/file.js' load(SoundJs).then ..
The audio signal returned for the same source encoded as `mp3` and `wav` are quite different. I was expecting some margin of error, but in my case the `[min, max]`...
This works: ```javascript import play from "audio-play"; import load from "audio-loader"; load("./sounds/coin.mp3").then(audioBuffer => { play(audioBuffer); }); ``` But I want to encode the AudioBuffer to a string (so it can...
In some reason this test https://github.com/audiojs/audio-play/blob/master/test.js#L51 invokes callback three times
Hi @dfcreative, I've just tried to use the new audio-loader 0.6.0 and I took more than 10 seconds to install on my computer... And I don't think that's a good...
This is mostly @audiojs issue, but I imagine cases where we don’t actually have complete buffer, but can get sequence of chunks. Example — soundcloud streams, or `` tag converted...