nukeop

Results 574 comments of nukeop

It wasn't yet, do you want to take it?

Let me know how you're going to design the filter input when you think it over.

Ok, can you please first say how you're planning to approach this?

Sounds good, thanks for contributing.

We use the html5 audio api to stream (SoundContainer and the react-hifi package), so it might be possible to get it from there: https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API

You can search by the string `audioContext`, e.g. visualizer uses this. Anything that's rendered inside the `` component will have the audio context passed in.

Yeah that's a sensible approach. That's how visualizer and equalizer work. Since this is similar to what the equalizer is doing I think you could add it there. If it...

Web audio API lets you add processing nodes in a chain. Each node gets its input after it's been processed by the nodes before it. So you shouldn't worry about...

Hm, is it possible to perform it on a stream? I'd like to avoid interruptions in playback if possible. Otherwise, streaming audio to the sinks is left to the web...