I have checked out http://rubyforge.org/projects/lame-encoder/

but the problem is it isn't documented(i don't even know how to use it) and it wrecks my gemfile because it requires rspec 0.5.0 which is totally old.

I would just like to encode wav files to mp3s using ruby so if there are other alternatives, please do suggest some.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

How about just running lame something like this?

def mp3_encode(wavefile)
    system("lame -V2 -f " + wavefile + " " + wavefile.gsub("wav", "mp3"))
end
link|improve this answer
well i was hoping i wouldn't need to do that but thanks :) follow up question though, this assumes the machine has lame installed, and will this work for windows/unix lame installations? – corroded Jan 27 '11 at 4:53
i'll accept this as it did point me at the right direction. thanks – corroded Jan 27 '11 at 6:15
On Windows you probably have to add lame to the Path. – Jonas Elfström Jan 27 '11 at 7:14
feedback

Your Answer

 
or
required, but never shown

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