Как заменить WMA на MP3

336
David

Около 60% моей музыкальной коллекции было скопировано с помощью Windows Media Player и, следовательно, в формате WMA. Я хочу конвертировать их в MP3, чтобы они были более совместимы с другими музыкальными проигрывателями.

Есть ли способ заменить WMA на MP3 и не дублировать MP3 без потери качества?

3
Что касается конвертации, любая программа, которая использует LAME для конвертации в MP3, должна быть полезной. slhck 11 лет назад 1
Я использовал MediaMonkey некоторое время, но сейчас я просто делаю что-то похожее на `ffmpeg -i input.wma -ab 32 output.mp3` Darius 11 лет назад 1

2 ответа на вопрос

2
Jet

We'll do a little trick to create a WMA to MP3 "converter" for you to ease your conversion.
First of all, download FFMpeg. It's free, and you can get it here.

1) If your files are in one directory, you can write in batch file:

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

Now copy that batch file to directory where are placed your WMA files and run it.

2) If you want to select them and convert manually (with drag'n'drop), then write in the batch file:

ffmpeg -i %1 -ab 32 %1.mp3 ren *.wma.mp3 ????????????????????????????????????????.mp3 delete %1 

Now your "converter" is ready. Drag and drop your files on it to convert files.

Что это за знаки вопроса? Вместо того, чтобы использовать «% I.mp3», чтобы получить файлы .wma.mp3, которые нужно переименовать, просто используйте «% ~ nI.mp3». Karan 11 лет назад 0
1
danielcg

I wouldn't use MP3. MP3 is a lossy compression format, meaning that you lose quality when you use it. Especially if you encode files that have already been encoded once, they will suffer from generation loss.

I'd go with something like AAC if your media player supports it (all Apple devices do). AAC is also lossy, but provides better quality than MP3.

If you're using a Zune, keep them as WMA because they can play those.

Похожие вопросы