Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Mortal Kombat X sound format

Get help on any and all audio formats, or chip in and help others!
spider91
advanced
Posts: 78
Joined: Mon Feb 14, 2011 8:09 am
Has thanked: 18 times
Been thanked: 45 times

Mortal Kombat X sound format

Post by spider91 »

It's something about FMOD, but i can't see any FSB header, only the FEV file. Can someone take a look and manage how to unpack mkx sounds?

https://mega.co.nz/#!IsRDABjI!135retu2s ... 43NZvTPgZ4

Update. Fsb files are encrypted. The key is 996164B5FC0F402983F61F220BB51DC6 , but steel need unpacker for .xxx files, cause gildor's extractor doesn't work.
daemon1
MEGAVETERAN
MEGAVETERAN
Posts: 2647
Joined: Tue Mar 24, 2015 8:12 pm
Has thanked: 65 times
Been thanked: 2871 times

Re: Mortal Kombat X sound format

Post by daemon1 »

For example I took "scorpion". Package is not compressed. It exports 200 fmodevent files and the remaining part is audio data starting from 0x2CF23. Maybe it will help you.
Last edited by daemon1 on Thu Apr 16, 2015 7:56 pm, edited 1 time in total.
ponaromixxx
beginner
Posts: 27
Joined: Thu Jul 17, 2014 4:52 am
Location: Russian
Has thanked: 1 time
Been thanked: 11 times

Re: Mortal Kombat X sound format

Post by ponaromixxx »

daemon1 wrote:For example I took "scorpion". Package is not compressed. It exports these 200 files and the remaining part is audio data starting from 0x2CF23. Maybe it will help you.
Hello! and you do not tell what kind of tool to extract you use?
daemon1
MEGAVETERAN
MEGAVETERAN
Posts: 2647
Joined: Tue Mar 24, 2015 8:12 pm
Has thanked: 65 times
Been thanked: 2871 times

Re: Mortal Kombat X sound format

Post by daemon1 »

ponaromixxx wrote:Hello! and you do not tell what kind of tool to extract you use?
I have my own set of experimental tools to work with UE3. They are not ready to be published, because many things are done manually.

Gildor will soon update his tools for MK X support.
ponaromixxx
beginner
Posts: 27
Joined: Thu Jul 17, 2014 4:52 am
Location: Russian
Has thanked: 1 time
Been thanked: 11 times

Re: Mortal Kombat X sound format

Post by ponaromixxx »

daemon1 wrote:
ponaromixxx wrote:Hello! and you do not tell what kind of tool to extract you use?
I have my own set of experimental tools to work with UE3. They are not ready to be published, because many things are done manually.

Gildor will soon update his tools for MK X support.
And you can try your achievements?
daemon1
MEGAVETERAN
MEGAVETERAN
Posts: 2647
Joined: Tue Mar 24, 2015 8:12 pm
Has thanked: 65 times
Been thanked: 2871 times

Re: Mortal Kombat X sound format

Post by daemon1 »

All issues resolved. It was relatively easy to unpack the sounds with fmod using their provided API. Working on the tool now.
daemon1
MEGAVETERAN
MEGAVETERAN
Posts: 2647
Joined: Tue Mar 24, 2015 8:12 pm
Has thanked: 65 times
Been thanked: 2871 times

Re: Mortal Kombat X sound format

Post by daemon1 »

Here you go, a universal FSB extractor for any formats. Needs fmodL.dll from the official fmod package. No error handling, no interface, because I'm lazy. Just give it the .fsb name and it will put all the sounds contained in .WAV format into the same folder.
Last edited by daemon1 on Sat Apr 18, 2015 8:41 am, edited 2 times in total.
OrangeC
double-veteran
double-veteran
Posts: 868
Joined: Sun Apr 20, 2008 2:58 am
Has thanked: 5 times
Been thanked: 41 times

Re: Mortal Kombat X sound format

Post by OrangeC »

Okay so its giving me a side by side config error when i try to run it even with the fmod DLL in the same directory.
daemon1
MEGAVETERAN
MEGAVETERAN
Posts: 2647
Joined: Tue Mar 24, 2015 8:12 pm
Has thanked: 65 times
Been thanked: 2871 times

Re: Mortal Kombat X sound format

Post by daemon1 »

OrangeC wrote:Okay so its giving me a side by side config error when i try to run it even with the fmod DLL in the same directory.
It was compiled with MSVC2008, so maybe you need to update your vc++ 2008 runtimes. I don't have another version now, sorry.
OrangeC
double-veteran
double-veteran
Posts: 868
Joined: Sun Apr 20, 2008 2:58 am
Has thanked: 5 times
Been thanked: 41 times

Re: Mortal Kombat X sound format

Post by OrangeC »

I see i installed the visual 2008 runtimes both x84 and x64 but stilll nothing.
daemon1
MEGAVETERAN
MEGAVETERAN
Posts: 2647
Joined: Tue Mar 24, 2015 8:12 pm
Has thanked: 65 times
Been thanked: 2871 times

Re: Mortal Kombat X sound format

Post by daemon1 »

Recompiled and updated the tool in release version, it must not give you errors now. Please also note that you need the latest fmodL.dll, because it will not work with old versions.
OrangeC
double-veteran
double-veteran
Posts: 868
Joined: Sun Apr 20, 2008 2:58 am
Has thanked: 5 times
Been thanked: 41 times

Re: Mortal Kombat X sound format

Post by OrangeC »

Doesn't give me the error anymore but it just crashes instead. Have the latest DLL too.
daemon1
MEGAVETERAN
MEGAVETERAN
Posts: 2647
Joined: Tue Mar 24, 2015 8:12 pm
Has thanked: 65 times
Been thanked: 2871 times

Re: Mortal Kombat X sound format

Post by daemon1 »

OrangeC wrote:Doesn't give me the error anymore but it just crashes instead. Have the latest DLL too.
You must give it one filename as parameter, it must be unencrypted .fsb file. If it doesn't work, send me that .fsb in PM and i will check it.
OrangeC
double-veteran
double-veteran
Posts: 868
Joined: Sun Apr 20, 2008 2:58 am
Has thanked: 5 times
Been thanked: 41 times

Re: Mortal Kombat X sound format

Post by OrangeC »

Ahh okay.

And as you said there are no tools to support the MK archives?
daemon1
MEGAVETERAN
MEGAVETERAN
Posts: 2647
Joined: Tue Mar 24, 2015 8:12 pm
Has thanked: 65 times
Been thanked: 2871 times

Re: Mortal Kombat X sound format

Post by daemon1 »

OrangeC wrote:Ahh okay.

And as you said there are no tools to support the MK archives?
So did it work?

I have a tool, but it is experimental. It just drops the whole bunch of files info one directory, and in case some files have same names, it overwrites them. I need time to correct this, if anyone needs this.
Post Reply