On Fri, Mar 05, 2004 at 03:42:36PM -0600, Kevin wrote:
> Is anyone familiar with a program that might convert an RA file (Real Audio)
> to an MP3??

Woohoo, I found my conversion script using mplayer and lame:

#!/bin/sh
pipe=/tmp/pipe
rm -f $pipe
mkfifo $pipe

/usr/local/bin/mplayer -vc null -vo null -really-quiet -ao pcm \
        -aofile $pipe $1 > /dev/null &
lame -S -b 64 -mm $pipe $2

If the script is called ra2mp3, then run it as:

        % ra2mp3 input.ra output.mp3

mplayer URL: http://www.mplayerhq.hu
lame URL: http://lame.sourceforge.net/

        Warren
_______________________________________________
mp3encoder mailing list
[EMAIL PROTECTED]
http://minnie.tuhs.org/mailman/listinfo/mp3encoder

Reply via email to