web-audio-api icon indicating copy to clipboard operation
web-audio-api copied to clipboard

Node.js implementation of Web audio API

Results 54 web-audio-api issues
Sort by recently updated
recently updated
newest added

Hi, Great library ! Do youu think it would be possible to use it with react native ? How would you proceed with the "connect" bit in order to connect...

Ideally - that must be interoperable with plain browser web-audio-api and enable https://github.com/GoogleChromeLabs/audioworklet-polyfill. That could then augment [browser-env](https://ghub.io/browser-env) / jsdom.

Hi, I see the code hasn't changed for over a year now, and the feature set is incomplete. Is this project dead? I can't see any other WebAudio implementation for...

``` var fs = require('fs') , AudioContext = require('web-audio-api').AudioContext , context = new AudioContext context.outStream = process.stdout fs.readFile(__dirname + '/sounds/powerpad.wav', function(err, buffer) { if (err) throw err context.decodeAudioData(buffer, function(audioBuffer) {...

Hi guys, When do we get oscillator nodes? and delay nodes? I would love to see them... as well as reverb nodes!

Do you recommend anything for capturing audio from a microphone with Node? Or should something like [node-microphone](https://github.com/vincentsaluzzo/node-microphone) work fine? Thanks.

thanks for this lib. I want use Web Audio Api to remove vocals.Need use createBiquadFilter()

As discussed with @sebpiq, modularity is one of the goals for web-audio-api. So here are ideas for discussion for the first release. * [ ] use [audio-buffer](https://github.com/audiojs/audio-buffer) instead of [AudioBuffer](https://github.com/audiojs/web-audio-api/blob/master/lib/AudioBuffer.js)...

I was able to work around the lack of `copyFromChannel`/`copyToChannel` by using `getChannelData` and `Float32Array::slice` and `AudioBuffer.fromArray` when trying to slice an AudioBuffer: ```coffee sliceAudioBuffer = (audioBuffer, startOffset, endOffset, audioContext)->...

[`AudioBufferSourceNode.start()`](https://developer.mozilla.org/en-US/docs/Web/API/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: >...