Any recommendation on libraries to do audio processing in Ruby. I need to do the following two tasks:

  • Find silences, for which I'm happy to just be able to iterate over each sample in the wave.
  • Cut and paste pieces of wav files to form a new wav file.
  • Convert wav to mp3, which I will probably leave to lame anyway.

I'm looking for the equivalent of NAudio, a C# library.

link|improve this question

If Ironruby is an option, why not use that and link directly into NAudio since you're familiar with it? – Dan Fitch May 19 '10 at 19:30
IronRuby is not an option, only plain good old Ruby. – J. Pablo Fernández May 19 '10 at 19:31
feedback

1 Answer

One option is ruby-audio, which has a wrapper over libsndfile.

Personally, I haven't had much luck with audio manipulation in pure ruby, but I have used Java libraries from jruby to good effect.

Good luck!

link|improve this answer
1  
Don't use fugal's ruby-audio. It's slow and buggy. The latest version is done by warhammerkid (myself) and can be found at github.com/warhammerkid/ruby-audio. I generated the rdocs and put them up on my server at doc.chromedshark.com/ruby-audio so glance through them and see if it works for you. – warhammerkid May 20 '10 at 22:42
You could use rdoc.info to automatically generate the docs. – J. Pablo Fernández May 24 '10 at 10:12
feedback

Your Answer

 
or
required, but never shown

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