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

So I found some very strange error behaviour when using an async version of AudioContext.decodeAudioData. When using the function as designed with a regular callback, I can access and log...

I found many feature under comment ``` Javascript readonly attribute AudioDestinationNode destination readonly attribute float sampleRate readonly attribute double currentTime readonly attribute AudioListener listener // AudioNode creation MediaElementAudioSourceNode createMediaElementSource(HTMLMediaElement mediaElement)...

Running npm install web-audio-engine with node v12.10.0 ``` npm install --save web-audio-engine npm WARN deprecated [email protected]: This package has been renamed 'window-function'. The API is otherwise the same. Please switch....

Hi All, I am using the following code to generate my data from an audio file. ~~~ window.AudioContext = window.AudioContext || window.webkitAudioContext; const audioContext = new AudioContext(); const drawAudio =...

I am implementing a "relay" server using Node, that connects to several peers using WebRTC and then forwards each peer's audio stream to all other peers. I was following this...

It already implemented? If not, is there another way to read streams? Thanks :)

First of all, thanks for lib, it saved a lot efforts. I have an AWS Lambda function that extracts peaks from audio files. Whenever I upload file to S3 this...

[test.mp3.zip](https://github.com/audiojs/web-audio-api/files/5931178/test.mp3.zip) this is the source file which i try to decode and error happen.

found that API in MDN docs,but not defined in its nodejs version

I got the above failure error message the code snippet: ```const AudioContext = require('web-audio-api').AudioContext, audioCtx = new AudioContext, Speaker = require('speaker'); audioCtx.outStream = new Speaker({ channels: audioCtx.format.numberOfChannels, bitDepth: audioCtx.format.bitDepth, sampleRate:...