I'm trying to convert a bunch of CBR 320 Kbps Mp3 to VBR 0 (max quality), using lame command in bash. However, it seems like lame can't overwrite existing files. It would be much faster that way, as I could use wildcards to do it on an unique, short terminal command, plus I wouldn't have to delete the old files and rename the new.
What I'm trying is:
lame -h -V 0 *.mp3
But I get the following error message:
lame: excess arg %filename%.mp3
Also, if I try on a single file
lame -h -V 0 %filename%.mp3 %filename%.mp3
I get:
Input file and Output file are the same. Abort.
In the command help there's no option mentioned for forced, overwrite or whatever. I searched in the internet and on Stack Overflow and found nothing too. Can anybody help me?