|
Short answer is that your "CDRECORD.EXE" file isn't in the directory you're working. If the program (CDRECORD) is in a different directory than the current directory, you need to either add the path to the CDRECORD such as this:
C:\dreamcast\cdrecord -dev=2,0,0 speed=4 -multi -audio \cdda\track01.wav \cdda\track02.wav \cdda\track03.wav
The other option would be to add a line prior to that line, to add a path to the directory such as this:
PATH=%path%;c:\dreamcast
cdrecord -dev=2,0,0 speed=4 -multi -audio \cdda\track01.wav \cdda\track02.wav \cdda\track03.wav
|