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.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 2 down vote accepted

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):

require 'rubygems'
require "fftw3"

N = 1024

loop do 
  data = STDIN.read(N).unpack("s*")
  na = NArray.to_na(data)
  fft = FFTW3.fft(na).to_a[0, N/2]
  p fft.map(&:abs).each_with_index.to_a[1..-1].max
end

To be called, for example:

brec -s 8000 -b 16 | ruby tuner.rb
link|improve this answer
1  
Do bear in mind though that you'll need to know a little about FFT and musical instrument spectra to get something useful as a guitar tuner. You'll need to take tokland's example and do some more processing on it -- picking the peak of the FFT won't reliably give you the pitch. See some of the other posts here about pitch detection: stackoverflow.com/search?q=pitch+estimation – the_mandrill Dec 22 '10 at 23:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.