thisnameistaken Posted January 16, 2010 Share Posted January 16, 2010 I'm trying to upload candidate mixes for my band to listen to but I can't find a decent wav->mp3 converter. I've been using Winamp's diskwriter plugin with the lame codec but the best bitrate it can produce is 56kbps, there are really obvious file compression artifacts over everything. Any better options for cheap / free? Quote Link to comment Share on other sites More sharing options...
sdgrsr400 Posted January 16, 2010 Share Posted January 16, 2010 Simple command-line LAME works fine with default settings for me: [url="http://www.rarewares.org/mp3-lame-bundle.php"]http://www.rarewares.org/mp3-lame-bundle.php[/url] . Save the following as ConvertWAVtoMP3.vbs: [code]Option Explicit Sub Main() if Wscript.Arguments.Count <> 1 then Wscript.echo("Incorrect command-line argument") Wscript.Quit(-1) end if Dim wav_filename : wav_filename = Wscript.Arguments(0) Dim mp3_filename : mp3_filename = Replace(wav_filename, ".wav", ".mp3", 1, 1, 1) 'Wscript.echo(wav_filename) 'Wscript.echo(mp3_filename) if wav_filename = mp3_filename then Wscript.echo("Input file is not .wav") Wscript.Quit(-1) end if Dim converter : converter = "d:\software\lame3.97\lame.exe" Dim invocation : invocation = "%comspec% /c " + converter + " """ + wav_filename + """ """ + mp3_filename + """" 'Wscript.echo(invocation) Dim WshShell : Set WshShell = WScript.CreateObject("WScript.Shell") Call WshShell.Run(invocation, 8, true) 'WScript.Sleep( 4 * 1000 ) Set WshShell=nothing 'Wscript.echo("done") End Sub Call Main()[/code] change the "converter" line to the right path to the Lame exe. Then create a shortcut to the VBS in your C:\Documents and Settings\Your Name\SendTo folder and you can activate a context menu Send To item on any WAV file in Windows explorer. Quote Link to comment Share on other sites More sharing options...
wateroftyne Posted January 16, 2010 Share Posted January 16, 2010 I use Audacity and the LAME codec. Google it... It's free. Quote Link to comment Share on other sites More sharing options...
jmesa Posted January 16, 2010 Share Posted January 16, 2010 iTunes Quote Link to comment Share on other sites More sharing options...
thisnameistaken Posted January 16, 2010 Author Share Posted January 16, 2010 [quote name='sdgrsr400' post='714560' date='Jan 16 2010, 04:55 AM']Simple command-line LAME works fine with default settings for me: [url="http://www.rarewares.org/mp3-lame-bundle.php"]http://www.rarewares.org/mp3-lame-bundle.php[/url] . Save the following as ConvertWAVtoMP3.vbs: ... change the "converter" line to the right path to the Lame exe. Then create a shortcut to the VBS in your C:\Documents and Settings\Your Name\SendTo folder and you can activate a context menu Send To item on any WAV file in Windows explorer.[/quote] Neat I like that. Thanks. Quote Link to comment Share on other sites More sharing options...
Sharkfinger Posted January 18, 2010 Share Posted January 18, 2010 (edited) [url="http://eusing.com/CDRipper/CDRipper.htm"]http://eusing.com/CDRipper/CDRipper.htm[/url] This simple little program is much more than a CD extractor, it encodes WAVs to other formats as well. Have used this for many years for all my simple MP3 encoding jobs. The ID tagging is also fairly simple and easy to use. Audacity can be a bit inflexible with that. It's free as well, which is nice. Edited January 18, 2010 by Sharkfinger Quote Link to comment Share on other sites More sharing options...
Dodge Posted January 18, 2010 Share Posted January 18, 2010 I'm pretty sure CDEX can encode WAV's to mp3 using Lame. Quote Link to comment Share on other sites More sharing options...
51m0n Posted January 18, 2010 Share Posted January 18, 2010 foobar2000 can do conversions from to anything - it front ends Lame for mp3s really nicely.... Although being a coder I too prefer CLI lame (really nice to drive it with a simple bash script to do the same as the aforementioned) Quote Link to comment Share on other sites More sharing options...
Bloodaxe Posted January 18, 2010 Share Posted January 18, 2010 + 1 for [url="http://cdexos.sourceforge.net/"]CDex[/url] Another useful one is [url="http://www.formatoz.com/"]Format Factory[/url] - converts a bucketload of media types into a shedload of others. Both 100% Freeware. Pete. Quote Link to comment Share on other sites More sharing options...
MoonBassAlpha Posted January 18, 2010 Share Posted January 18, 2010 CDex works but does give you rather too much choice if you don't know what half the stuff is. It does OGG Vorbis too! (Clue - it's NOT Lithuanian porn) Quote Link to comment Share on other sites More sharing options...
iamapirate Posted January 20, 2010 Share Posted January 20, 2010 iTunes for the win! It solves all musical problems.... don't question me on that. Quote Link to comment Share on other sites More sharing options...
51m0n Posted January 20, 2010 Share Posted January 20, 2010 [quote name='iamapirate' post='719201' date='Jan 20 2010, 04:20 PM']iTunes for the win! It solves all musical problems.... don't question me on that.[/quote] Errrr not..... Quote Link to comment Share on other sites More sharing options...
iamapirate Posted January 20, 2010 Share Posted January 20, 2010 oh and yah, itunes will do wav--> mp3 almost automatically if you set your encoder to mp3 and try to import a wav into itunes. Quote Link to comment Share on other sites More sharing options...
jim_bass Posted January 27, 2010 Share Posted January 27, 2010 [quote name='iamapirate' post='719201' date='Jan 20 2010, 04:20 PM']iTunes for the win! It solves all musical problems.... don't question me on that.[/quote] +1 for itunes - easy peasy and free. Quote Link to comment Share on other sites More sharing options...
john_the_bass Posted January 28, 2010 Share Posted January 28, 2010 Definite;y iTunes - you can set the bitrate you want it to convert to from 16 up to 320 kpbs Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.