Jump to content

Help extract .big file nfs carbon xbox version


ZARF
Go to solution Solved by BloodRaynare,

Recommended Posts

  • Solution
2 hours ago, ZARF said:

Yes, sorry for not posting them earlier

COPSPEECH_EN.zip 53.93 kB · 0 downloads

Here's a QuickBMS script for the IDX/BIG combo:

## EA Blackbox IDX/BIG sound extractor script by BloodRaynare

open FDDE IDX
open FDDE BIG 1

get TEST long
endian guess TEST

goto 0x54
get FILES long
for i = 0 < FILES
	get ID long
	get UNK long
	get UNK2 long
	get OFFSET long
	putarray 0 i OFFSET
next i
get TMP asize 1
math BIG_SZ = TMP
putarray 0 i BIG_SZ

for i = 0 < FILES
	getarray OFFSET 0 i
	math i + 1
	getarray SIZE 0 i
	math SIZE - OFFSET
	string NAME p "%04d.str" i
	log NAME OFFSET SIZE 1
next

Both of the IDX and BIG files must be in the same directory
Then just play the extracted str file with vgmstream.

  • Thanks 1
Link to comment
Share on other sites

23 hours ago, ZARF said:

Yes, sorry for not posting them earlier

COPSPEECH_EN.zip 53.93 kB · 3 downloads

 

20 hours ago, BloodRaynare said:

Here's a QuickBMS script for the IDX/BIG combo:

## EA Blackbox IDX/BIG sound extractor script by BloodRaynare

open FDDE IDX
open FDDE BIG 1

get TEST long
endian guess TEST

goto 0x54
get FILES long
for i = 0 < FILES
	get ID long
	get UNK long
	get UNK2 long
	get OFFSET long
	putarray 0 i OFFSET
next i
get TMP asize 1
math BIG_SZ = TMP
putarray 0 i BIG_SZ

for i = 0 < FILES
	getarray OFFSET 0 i
	math i + 1
	getarray SIZE 0 i
	math SIZE - OFFSET
	string NAME p "%04d.str" i
	log NAME OFFSET SIZE 1
next

Both of the IDX and BIG files must be in the same directory
Then just play the extracted str file with vgmstream.

Friend, thank you very much, I tried the script and it worked perfectly

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...