I'd like to write a simple script to convert a few dozen .wav files I have in a folder to v0 mp3. It doesn't need to be complicated, just enough to do the job and help me learn a little bit of python in the process ;)
I've gathered that I'll need to use something like "from subprocess import call" to do the calling of "lame", but I'm stuck as to how I can write the rest. I've written bash scripts to do this before, but on windows they're not much good to me.
I understand basic python programming.