I made a bat program and to extract the wem files from the bnk files. Then also had a program convert the wem files to listenable ogg files. It worked for some of the files, but not all of them were valid. Here's a step by step.
Download bnkextr.zip ww2ogg019.zip and revorb.exe
Extract it to the folder that has the bnk files you want to unload.
Now make a new text file and name it whatever you want... then copy paste this into it.
HTML Code:
for %%a in (*.bnk) do (
md "%%~na" 2>nul
move "%%a" "%%~na"
copy bnkextr.exe %%~na
copy ww2ogg.exe %%~na
copy revorb.exe %%~na
copy packed_codebooks_aoTuV_603.bin %%~na
cd %%~na
bnkextr.exe %%a
del %%a
ren *.wav *.wem
for %%f in (*.wem) do (
ww2ogg.exe %%f --pcb packed_codebooks_aoTuV_603.bin
if exist "%%~nf.ogg" del %%f
)
for %%f in (*.ogg) do revorb.exe %%f
del packed_codebooks_aoTuV_603.bin
del *.exe
cd ..
)
for /f "delims=" %%d in ('dir /s /b /ad ^| sort /r') do rd "%%d"
That should get most of the wem files out of the bnk, then converts them to ogg and puts them into folders.
Now for some files that didn't work for me, so I had to just do the convert wem to ogg part.
So I made a convert.bat using this
HTML Code:
for %%f in (*.wem) do ww2ogg.exe %%f --pcb packed_codebooks_aoTuV_603.bin
pause
for %%f in (*.ogg) do revorb.exe %%f
pause
Then that was able to convert most of the wem's to ogg and let me get some sweet listening in!
I couldn't add the links or the post wouldn't work
