Jan 08
How to convert RealAudio streams into WAV (which you can then encode to MP3):
-
Install mplayer. It’s available for OS X and Linux.
-
Put the following definitions in your .bashrc file:
function radownload { if [ "$1" = "--help" ]; then echo radownload [url or .ram file] file.ra else mplayer -dumpstream -dumpfile $2 $1 fi } function ra2wav { if [ "$1" = "--help" ]; then echo ra2wav file.ra file.wav else mplayer -ao pcm:file=$2 -vc dummy -vo null $1 fi } -
Start up a new shell and convert away:
% radownload rtsp://www.suckysite.com/media/foo.rm audio.ra
% ra2wav audio.ra audio.wav
Adapting the instructions for Windows is left as an exercise for the reader.
Tagged: audio, linux, Macintosh, MP3, mplayer, RAM, Real, realaudio, wav, wave
One Response to “Fo’ Real”
Leave a Reply
You must be logged in to post a comment.
January 8th, 2007 at 13:38 -0700
FTP the files to one of our UNIX accounts and convert them there? (What?? Not all WIndows users have UNIX accounts? How… primitive.)