Romy
Well-known Member
Does someone know which upk files are containing songs from the game? I want to extract some battle themes which are not in the OST album. Thanks in advance.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
FOR /R "<fullpath>\AUDIO" %%A IN (*.wav) DO (
Pushd "%%~pA"
"<fullpath>\ww2ogg.exe" --pcb "<fullpath>\packed_codebooks_aoTuV_603.bin" "%%A"
Popd )
pause
FOR /R "<fullpath>\AUDIO" %%A IN (*.ogg) DO (
Pushd "%%~pA"
"<fullpath>\revorb.exe" "%%A" "%%~pnA_FIXED.ogg"
Popd )
pause