Would you like to have a desktop icon that you could drag and drop virtually any file that has audio in it upon and it would convert it to an MP3? I did this in Windows (7 - probably works in other recent versions), I'm sure it's similar in other OS's. First, you need FFMPEG the free audio/video command line utility and an MP3 codec (libmp3lame) for it. (some versions have it already as a part of the executable, for others, it's a separate free dll download).
Then you need to (using a plain text editor) make a file, call it - say, any_audio_to_mp3.bat - here's what you can put there:
Then make a shortcut to this file on your desktop.Code:@echo off set filename=%1 c:\path to ffmpeg exe\ffmpeg.exe -i %filename% -acodec libmp3lame %filename:~0,-5%.mp3 del /P %filename%
When you drag and drop an audio containing file on it, it will pop up a command prompt window that will automatically convert it to original_filename.mp3 into the same folder where the file currently is. Once finished (takes awhile for long files, not much time for the average 3-5 minute audio piece), it will then prompt you to delete the original file, to which you can respond y or n then hit enter to execute your choice. Then the window will close.
This can be tweaked to suit easily enough if you know and/or are willing to research a little about batch files and/or how ffmpeg works - all of which is easy to find via Google.



Reply With Quote
Bookmarks