I've never worked with real-time audio features. I would like to know whether there are ruby libraries out there that would allow me to create something like a guitar tuner.
|
feedback
|
|
There are two orthogonal issues: 1) read the audio, 2) process it. To get the audio you could check ruby-audio, even though, to be honest, I've never used it and documentation seems scarce. Personally I'd resort to what the operating system provides; for example in GNU/Linux we have bplay. The second issue is calculating the FFT of audio, this should be easy with FFTW3. Here is a quick and dirty example that gets the maximum point in the FFT from stdin (16 bits, mono. FFT positions are relative to sample rate as usual):
To be called, for example:
| |||||
feedback
|