:
Did you type all of that into cmd by hand? You could either do
Or have a batch file
:
for %%i in (*.ogg) do (
revorb.exe %%i
)
pause
exit
|
I used quickbms for bnk, which loads .txt with that "for i=..." text, so I dont have to type it. And for .wem, I used .bak with
:
for %%f in (*.wem) do ww2ogg.exe %%f --pcb packed_codebooks_aoTuV_603.bin
pause
for %%f in (*.ogg) do revorb.exe %%f
pause
The important thing is that after quickbms, you'll end up with unusable wavs, THEN you have to use ww2ogg but instead of "for %%f in (*.wem)" you have to replace .wem with .wav. Then you'll have lossless perfect .ogg of all the sounds of the game
