Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

Nicktoons MLB *.big file

Featured Replies

  • Author
  • Localization

JackTheRipper, posted Mon Jan 10, 2022 12:13 am (68939)


I'm trying to extract the games music that the Wii version uses custom headered DSP, where the 360 version uses some headerless XMA.
The game used Blue Castle engine seen in The Bigs, Bigs 2, Dead Rising 2, and some others.
It starts at \x04\x03\x02\x01 as BE or \x01\x02\x03\x04 as LE, but files start at 0x800.
Script: deadrising2_otr.bms
File #1: music.big from Wii version
File #2: music_mg.big from Wii version
File #3: music.big from the 360 version
  • Author
  • Localization

BloodRaynare, posted Mon Jan 10, 2022 1:43 am (68942)


I have two methods for these, choose what you prefer:

BMS scripts TXTH scripts

BMS scripts:
Code:
get ID long
get HEADER_SZ long
get BIG_SIZE long
get FILES long
get FILE_INFO_START long
get NAME_OFF_START long

for i = 0 < FILES
   get NAME_OFF long
   savepos INFO
   goto NAME_OFF
   get NAME string
   goto INFO
   get SIZE long
   get OFFSET long
   get MUL long
   get ZERO long
   log NAME OFFSET SIZE
next i


TXTH scripts (for use with the extracted files)
Save it as ".dspi.txth" then put it to where you extracted the contents of music.big

Code:
codec = DSP

start_offset = 0xc0
sample_rate = @0x08:BE
channels = 2
coef_offset = 0x1c
coef_spacing = 0x60
coef_endianness = BE

num_samples = data_size


Or just a TXTH scripts to play the big files directly with vgmstream.
Save this as "music.big.txth" and put it on the same directory as the music.big.

Code:
codec = DSP

subsong_count = @0x0c
base_offset = @0x10
subsong_spacing = 0x14

name_offset_absolute = @0x00 - base_offset
data_size = @0x04
base_offset = @0x08
subsong_spacing = 0

start_offset = base_offset 0xc0
sample_rate = @0x08:BE
channels = 2
coef_offset = 0x1c
coef_spacing = 0x60
coef_endianness = BE

num_samples = data_size


To play the files just use a media player (like foobar2000) that supports vgmstream plugin.
Both of the TXTH scripts needs you to check the "Enable unknown exts" option in vgmstream's preference if you're using foobar2000.
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.