Re: WAV to APE via BAT file ()How to do it?)
Reply #3 –
Created a BAT file with the info you provided, and it worked. I was able to modify it so that the command prompt box stayed around until I closed it by adding two lines at the end:
@echo off
:loop
mac.exe "%~1" "%~d1%~p1%~n1.ape" -c3000
shift
if not ."%~1"==."" goto loop
:end
pause
I found, though, that if I added the -v command, it converted without verifying at all. I ended up having to create a seperate BAT file just to do that.
@echo off
:loop
mac.exe "%~d1%~p1%~n1.ape" -v
shift
if not ."%~1"==."" goto loop
:end
pause
Is there a way to combine the two into one BAT file that creates, then verifies an ape file? If not, I'm perfectly happy with using the two seperate BAT file to do everything.