Twisted Metal: Black|SHELLMUS.BNK file.

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
JackKrowell
Posts: 45
Joined: Thu Sep 26, 2019 9:56 pm

Twisted Metal: Black|SHELLMUS.BNK file.

Post by JackKrowell »

I need some advice on what program I need, or just how exactly to open/extract the .bnk file of a PS2 game. The game I'm talking about is Twisted Metal:Black, and I'm really wanting the soundtrack files for the games main menu theme.

I really need all the support anyone can lend me.

Here's a shareable link for the folder containing the .bnk files of Twisted Metal:Black for the PS2 (I'm mostly interested in the files SHELLMUS.BNK and SHELLSFX.BNK, as I believe one of those 2 contain the main menu theme for the game):


https://drive.google.com/open?id=183ates55doEiEsft52Nowf8rqJKD8LUk
JackKrowell
Posts: 45
Joined: Thu Sep 26, 2019 9:56 pm

Re: Twisted Metal: Black|SHELLMUS.BNK file.

Post by JackKrowell »

Please, anybody, just help me out some?
BloodRaynare
Posts: 367
Joined: Fri Mar 10, 2017 7:23 am

Re: Twisted Metal: Black|SHELLMUS.BNK file.

Post by BloodRaynare »

It was similar format to the Jak and Daxter ones: https://forum.xentax.com/viewtopic.php?t=12966 (Albeit, with different extensions).

The problem with this format was it's only consist of soundfonts (and sometimes, include some sort of MIDI files). Even if you able to extract the soundfonts using PSound, you still need to convert the MIDI files to something that's readable on your OS and using those soundfonts to make it into a music. And those are beyond to what I can do unfortunately.
JackKrowell
Posts: 45
Joined: Thu Sep 26, 2019 9:56 pm

Re: Twisted Metal: Black|SHELLMUS.BNK file.

Post by JackKrowell »

O.K. then, well thanks for the advice, I appreciate your help anyway.
JackKrowell
Posts: 45
Joined: Thu Sep 26, 2019 9:56 pm

Re: Twisted Metal: Black|SHELLMUS.BNK file.

Post by JackKrowell »

Could anybody else on this this site please help me out here, is there any tool/software someone can provide for me to extract the .bnk files of the PS2 version of Twisted Metal:Black?

BloodRaynare, I know you already gave me all the advise you had, but I'm talking about all of anybody else on ZenHax could please, give me an answer here?.
JackKrowell
Posts: 45
Joined: Thu Sep 26, 2019 9:56 pm

Re: Twisted Metal: Black|SHELLMUS.BNK file.

Post by JackKrowell »

Say BloodRaynare, could at least tell me where I could find these Midi files to convert. Where do I find Midi within a PS2 Game, such as Twisted Metal: Black. The only clue to such files is some other file known by the name:

989SND.IRX

Could anyone help me out here please.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Twisted Metal: Black|SHELLMUS.BNK file.

Post by aluigi »

For those BNK files you can use this script:

Code: Select all

get DUMMY long  # 1
get FILES long
for i = 0 < FILES
    get OFFSET long
    get SIZE long
    log "" OFFSET SIZE
next i
JackKrowell
Posts: 45
Joined: Thu Sep 26, 2019 9:56 pm

Re: Twisted Metal: Black|SHELLMUS.BNK file.

Post by JackKrowell »

When I used the script on the SHELLMUS.BNK file, it just extracted 3 files of different formats. One being ".sbv", another one being ".dat", and the last one being ".sdb". What do I do now?
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Twisted Metal: Black|SHELLMUS.BNK file.

Post by aluigi »

I just made a script that works also with these files, open sbv and it will do everything:
http://aluigi.org/bms/twisted_metal_bnk.bms

The data is raw playstation adpcm without any header.
The script can be definitely improved but maybe that's enough at the moment.