I have radio programs that I have obtained with the extension rm
and ra
. How to convert them to mp3 or other more common type?
Asked
Active
Viewed 4,927 times
6
3 Answers
1
In this case I had to use a piece of heavy artillery I was familiar with in Windows: Format Factory (for a clean download use the torrent)
Unzip if needed and install Format Factory ... after installing Wine, of course.
A lot of settings are possible
1
You can use sound converter. open up your terminal and type this to install . sudo apt-get install soundconverter

Raja G
- 102,391
- 106
- 255
- 328
-
it is an advantage in using a gui for ubuntu: but isn't it a bit slow? it took a lot of more time than the other solutions – Oct 22 '12 at 18:33
ffmpeg -i *.ra *.mp3
) – Oct 22 '12 at 14:44
– Eirriel Oct 22 '12 at 15:43for i in *.ra; do ffmpeg -i $i $(echo $i | sed 's/\.ra/\.mp3/'); done
soundconverter
? – Oct 22 '12 at 18:38