Toybox Turbos (.wem, and .bnk)

Codecs, formats, encoding/decoding of game audio, video and music
Xiron
Posts: 104
Joined: Sat Sep 12, 2015 7:09 am

Toybox Turbos (.wem, and .bnk)

Post by Xiron »

Hey all.

So for the .bnk sounds they are likely riff sounds, as I've seen traces of RIFF in the file with data usually occurring not long after the RIFF. Aside from this note I've noticed the header is BKHD and there is DIDX near the start of files, and that JUNK occurs in some places, and the file usually has STID right around the end.

As for .wem files. RIFF comes in right off the bat as the first bytes of the file, as has the same principle of data following it as the .bnk sounds do. It lacks the DIDX .bnk does but does still have JUNK.
spider91
Posts: 233
Joined: Sun Aug 24, 2014 5:26 pm

Re: Toybox Turbos (.wem, and .bnk)

Post by spider91 »

Xiron
Posts: 104
Joined: Sat Sep 12, 2015 7:09 am

Re: Toybox Turbos (.wem, and .bnk)

Post by Xiron »

It works but not. The raw .wem files come out audible, but distorted, and the .wem files that come out of the .bnk files, crashes the program.
spider91
Posts: 233
Joined: Sun Aug 24, 2014 5:26 pm

Re: Toybox Turbos (.wem, and .bnk)

Post by spider91 »

What raw .wem files are you talking about? There is no any raw files in your archive.

For files inside .bnk use this script after extracting them from .bnk.
Xiron
Posts: 104
Joined: Sat Sep 12, 2015 7:09 am

Re: Toybox Turbos (.wem, and .bnk)

Post by Xiron »

Erm, sorry, by raw I meant just the .wem files that were not inside the bnk file.
I'll report on the script when I return home later.
spider91
Posts: 233
Joined: Sun Aug 24, 2014 5:26 pm

Re: Toybox Turbos (.wem, and .bnk)

Post by spider91 »

Try this one for .wem
Xiron
Posts: 104
Joined: Sat Sep 12, 2015 7:09 am

Re: Toybox Turbos (.wem, and .bnk)

Post by Xiron »

@script; Working awesomely. Best way to mass convert all the files though?

@wwise; Great, it got most bits of the songs. It has the part from where the loops end and start, i̶t̶ ̶m̶i̶s̶s̶e̶s̶ ̶o̶u̶t̶ ̶t̶h̶e̶ ̶i̶n̶t̶r̶o̶d̶u̶c̶t̶i̶o̶n̶s̶ ̶t̶h̶o̶u̶g̶h̶.̶ turns out the intros are separately in the .bnk files.
Last edited by Xiron on Fri Oct 02, 2015 7:41 pm, edited 1 time in total.
spider91
Posts: 233
Joined: Sun Aug 24, 2014 5:26 pm

Re: Toybox Turbos (.wem, and .bnk)

Post by spider91 »

@script; Working awesomely. Best way to mass convert all the files though?


Just create batch file

Code: Select all

for %%i in (*.wem) do quickbms.exe script.bms "%%i" 
Xiron
Posts: 104
Joined: Sat Sep 12, 2015 7:09 am

Re: Toybox Turbos (.wem, and .bnk)

Post by Xiron »

Ah, I thought .bat would be the answer. I had no idea how to play it out though.
Thanks!