From: Desireco on
Hi, I got an idea that would require me to mix and merge audio files
programatically. Is there easy way to do this in ruby? I don't really
need specific audio format ie. I can adjust to that as long as it is
very easy and maybe gives few effects.

Any input would be greatly appreciated.

Zeljko
From: Albert Schlef on
Desireco wrote:
> Hi, I got an idea that would require me to mix and merge audio files
> programatically. Is there easy way to do this in ruby? I don't really
> need specific audio format ie. I can adjust to that as long as it is
> very easy and maybe gives few effects.
>
> Any input would be greatly appreciated.
>
> Zeljko

This may not help you, but there's the "sox" program:

http://sox.sourceforge.net/

It says in the FAQ it has a library too, but maybe using the
command-line is enough for you.
--
Posted via http://www.ruby-forum.com/.

From: cacciatc on
On Mar 3, 1:44 pm, Desireco <zel...(a)gmail.com> wrote:
> Hi, I got an idea that would require me to mix and merge audio files
> programatically. Is there easy way to do this in ruby? I don't really
> need specific audio format ie. I can adjust to that as long as it is
> very easy and maybe gives few effects.
>
> Any input would be greatly appreciated.
>
> Zeljko


Maybe Minim? I have used it from ruby-processing and was pleased with
the results.

http://code.compartmental.net/tools/minim/
http://wiki.github.com/jashkenas/ruby-processing/

-C