In reply to:
For various reasons, I need a nice and simple piece of software which will do conversion from MPx (2 or 3) to WAV (PCM, 44.1KHz, 16 bit). I don't need anything fancy - ideally it should be drag and drop (if Windows) or command line (Lin/Win) and default to putting new files in the same directory as the existing ones with the same filename (but different extension, obviously).
mpg321:
outfile mpg321 -w outfile (file|URL|-)
should do. You could even make a short shell-script:
#!/bin/bash
#untested!
mpg321 -w `basename $1`.wav $1
--
Toby Speight - 040103385