I have a 3gp audio file recorded with my Android cellphone.

I would like to convert it to mp3, preferably on Linux, but Windows also an option.

Any recommendations?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

Try ffmpeg:

ffmpeg -i in.3gp -acodec mp3 -ar 22050 -f wav out.mp3
link|improve this answer
Thanks. I ended up using ffmpeg (well, winff). But the codecs were missing so I needed the instructions here ubuntuforums.org/showthread.php?t=1117283. – Daphna Jan 10 '11 at 7:50
feedback

Your Answer

 
or
required, but never shown

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