Hacker News new | ask | show | jobs
by satyarthms 517 days ago
Hydra actually works well with music input! It grabs audio from the mic and `a.show()` will show you the frequency bins. Then any numerical parameter can be modulated by the intensity of a bin, for example:

`noise().thresh(()=>a.fft[0]*2).out()`

1 comments

> It grabs audio from the mic

Is it possible to grab from default audio output device instead of mic? Probably not as it's browser based. I suppose mic can be faked on OS level somehow.