Possible Duplicate:
Are there any good wma to mp3 converters?

How can I mass convert audio files from WMA to MP3?

link|improve this question

60% accept rate
Which OS are you using? It's quite easy in a *nix environment to do this in a terminal. – boehj May 16 '11 at 7:15
Exact duplicate, I think. The answers to that will answer this precisely. – jcrawfordor May 16 '11 at 8:22
feedback

closed as exact duplicate by slhck, DMA57361 May 16 '11 at 10:56

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

FFmpeg is another great option. You can compile it yourself, or grab the Windows binaries from http://ffmpeg.arrozcru.org/autobuilds/.

Assuming all your wma files are in the same directory, you can run a batch command like

FOR %I IN (*.wma) DO <path to ffmpeg.exe> -i "%I" "%I.mp3"

in the directory containing all your wma files.

link|improve this answer
feedback

SoundConverter can convert from any format that you have GStreamer read plugins for, and to several popular formats.

link|improve this answer
feedback

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