Convert Anything To MP3

I have an mp3 player. No video, no wma, no ra, no ogg, just mp3. So I have to convert all my media to mp3 to work on my player. Most media I use can simply be listened to and the video, while nice to have, is not necessary. I have written a batch file that will convert any media supported by ffmpeg to mp3.

This script requires FFMPEG. Go here and download FFmpeg-svn-XXXXXX.7z. In it should be ffmpeg.exe. Make sure it is in the same folder as the batch file you create in the following steps.

Save the following as a batch file, such as ConvertToMp3.bat. Drag and drop media files onto it to convert to mp3.

%~d1
cd %~dp1
ffmpeg -i "%~f1" -vn -acodec libmp3lame -ab 96000 "%~dpn1.mp3"
pause
Leave a comment

0 Comments.

Leave a Reply


[ Ctrl + Enter ]