TAP2WAV for Windows

Anything related to the tools Tap2Wav, Tap2CD, Tap2Dsk, Sedoric Disc Manager, Tape Header Creator, WriteDsk, and generaly speaking tools related to the management of Oric data files and devices.
StarshipUK
2nd Star Corporal
Posts: 18
Joined: Sun Nov 03, 2013 8:31 pm

TAP2WAV for Windows

Post 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?
User avatar
peacer
Flight Lieutenant
Posts: 451
Joined: Wed Jun 09, 2010 9:23 pm
Location: Turkey
Contact:

Re: TAP2WAV for Windows

Post 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.
Post Reply