Ads
Sygate Personal Firewall : Free firewall for personal/home use.
Amazon.com : You surely already know them...
Quote of the day : "Oh, oh... I just made poopoo." Shibuki (Retard Girl voice pack)

Next quote in 2.5 hours. [suggest a quote]

Other free stuff

Converting MP3 to ogg with BeSweet

Summary

Abstract
  • Our package, BeSweet+GUI+vorbis.exe, includes all that is needed to convert mp3 to ogg, with a Windows integration example.

All links

Running BeSweet with the GUI

Here is a screenshot of what you get when you want to launch BeSweet by double-clicking on it :
BeSweet screenshot

Well, we think the easiest way to learn command syntax is to read a few examples. So, we downloaded the BeSweet GUI... Now, we get this :
BeSweet GUI v0.6 screenshot

Uh, cool, there are many options, but we thought you may not want/need so many of them (we are here to convert your old MP3s, which are supposed to be already "treated")... What's more you can't convert several files at a time with this form.
We can see the command line, which will be useful later (maybe we'll choose another filename then, for DJ Dark View seems to have too long filenames lol). Fine, now let's click everywhere to see what happens... hm, the Batch Mode looks interesting :
BeSweet GUI v0.6 batch mode screenshot

To add files in the batch mode, just drag and drop them into the list. To convert them, click on BeSweet's List → Multiple OGGs
Uh-oh, we get an error message saying there is some dll file missing. So we download the oggvorbis-dlls and unzip them into the program's directory (doing so, we also compress them with UPX, saving a nice megabyte). Now everything should be working fine.

Providing BeSweet with a Windows integration

The following code will add an option in Windows Explorer context menu that enables you to convert your mp3 files to ogg directly from the explorer : (please see the regedit tutorial about reg files if you don't know how to use this code)
REGEDIT4

[HKEY_CLASSES_ROOT\mp3file\Shell\to_ogg_1]
@="Convert to Ogg (q=1)"

[HKEY_CLASSES_ROOT\mp3file\Shell\to_ogg_1\command]
@="C:\\Audio\\BeSweet\\BeSweet.exe -core( -input \"%1\" -output \"%1.ogg\" -logfilea \"%1_CONV_LOG.log\" ) -ogg( -q 0.100 )"
To use it, replace C:\\Audio\\BeSweet\\BeSweet.exe with the path of your BeSweet installation (and put two backslahes instead of one). Note that you can change the quality by modifying the value -ogg ( -q 0.100 ) between 0 and 1. Of course, you can change the whole command line in this example, eg to convert into another format.

To remove the option, use the following code (the same way as above) :
REGEDIT4

[-HKEY_CLASSES_ROOT\mp3file\Shell\to_ogg_1]