Page 1 of 1

TAP2WAV for Windows

Posted: Sun Nov 03, 2013 8:41 pm
by StarshipUK
Is there a Windows Version of TAP2WAV or a way to Bulk Convert TAP files to WAV files?

Even better is there an archive of every TAP game file already converted to WAV anywhere, to save having to convert them?

Re: TAP2WAV for Windows

Posted: Sun Nov 03, 2013 10:26 pm
by peacer
I have transferred 144 most favourite games to wav format to load on my Oric. I have choosen mostly graphical and machine code based commercial games. You can download them from here : http://puu.sh/57VFp.rar

For bulk conversion, I have created a .BAT file like this
@echo off
set i=1
for /R %%f in (dir /s /b *.tap) do call :tap2waw "%%f"
goto done

:tap2waw
tap2cd -c %1 %1%.wav
set /A i+=1

:done
If you create this batch file and put it together with tap2cd.exe in the same directory, it will search for all the *.tap files in the same directory and subdirectories. You will have to enter names for nameless programs but it won't be a problem.