View Single Post
  #8  
02-28-2015, 02:19 AM
Strnadik's Avatar
Strnadik
Stingbee
 
: Apr 2014
: Czech Republic
: 87
Rep Power: 12
Strnadik  (100)Strnadik  (100)

:
Did you type all of that into cmd by hand? You could either do
:
revorb.exe *.ogg
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
__________________
"If New 'n' Tasty is going to be modable, I will mod the f*** out of it!"

Reply With Quote