QUOTE (Boiled Beans @ Mar 27 2008, 08:45)

I tried to apply some of the settings, but I'm still stuck at the command line. How exactly do you use it? By default, it shows C:\Documents and Settings\Owner>
If I type Lame.exe after that line, it gives an error.
My Lame.exe is found in C:\Program Files\Exact Audio Copy
And my ripped .wav files are found in C:\Album Art
So how exactly do I navigate in command line? Or do Lame.exe and . wav files need to be in the same directory?
With the command line you either need to:
- Specify the full path to a file (including an executable)
- Just refer to the file name (e.g.: LAME.EXE) if you are working in the same folder as the file
- Just refer to the file name if it is in a folder in your PATH (e.g.: your Windows directory).
If your lame.exe is in "C:\Program Files\Exact Audio Copy", and your WAVE files in "C:\Album Art", then I would tend to navigate to "C:\Album Art" and then use:
CODE
"C:\Program Files\Exact Audio Copy\LAME.EXE" -V2 --vbr-new file.wave
In actual fact, what I do, is place all my command line executables in a folder in my PATH so that I only need to use the file name whichever folder I am working from.
Of course you could work from "C:\Documents and Settings\Owner" and just use:
CODE
"C:\Program Files\Exact Audio Copy\LAME.EXE" -V2 --vbr-new "C:\Album Art\file.wave"
One tool I find really useful is
Clickie. This small application adds an "Open MS-DOS Prompt" content menu item to any folder in Windows. This makes it very easy to open a console with the working directory set to the folder of your choice (rather than having to use
CD from within the console).
QUOTE (Boiled Beans @ Mar 27 2008, 08:45)

And also, is there a command which will encode all the wavs in a folder at one go instead of entering the input name individually?
For this, you need to use the command
FOR. Follow the link, and here's a simple example, to be run from "C:\Album Art":
CODE
FOR %G IN (*.wav) DO "C:\Program Files\Exact Audio Copy\LAME.EXE" -V2 --vbr-new "%G"
If you want to be doing more on the command line I would suggest taking a look around the site I am linking to for DOS commands.
QUOTE (Boiled Beans @ Mar 27 2008, 08:45)

Regarding %s and %d, I've read the link as well, what exactly do you mean by Source file and Destination file placeholder? Will the encoding process still work if I remove them from EAC?
If encoding to MP3 the source file is a WAVE, and the destination an MP3. EAC uses the %s (source) and %d (destination) placeholders as tokens within the command line that you enter to represent where it should substitute the actual file names, as detirmined by the temporary WAVE file that EAC creates, and the file naming scheme the suer has specified.