You can set up a batch file to restart it by creating a batch file in your dsd working directory:
* dmr.bat is the name of the batch file I run
* my working directory is c;\dsd -f yours is something else change cd\dsd
* the switches are specific to TRBO (with -xr because I need to switch invertedness on my particular audio card)
* I renamed my dsd.exe [from woodpecker, with filter] to dsd_filter.exe
Code:
echo off
set /a i=0
:loop
if %i%==1000 GOTO END
echo This is iteration %i%
cd\dsd
dsd_filter -ff -mg -xr -i /dev/dsp -o /dev/dsp
set /a i=%i%+1
GOTO loop
:end
echo That's It!
- this will restart it 1000 times (modify 1000 to set number of times you want it to restart)
- doesn't matter what you echo - you don't even need echo
- after all, you'll never see what's echoed during restarts most of the time
Mike