Floigan Bros music.bin

Codecs, formats, encoding/decoding of game audio, video and music
Gumbo
Posts: 12
Joined: Sun Oct 05, 2014 3:58 pm

Floigan Bros music.bin

Post by Gumbo »

Hi Everyone,

Im attempting to extract the music from the MUSIC.BIN file from the Dreamcast game Floigan Bros.
I opened it up with HXD but there isnt anything in there that i recognize, And i have run it though comtype_scan2 with nothing apparently useful being produced.

Sample is attached and Full file is avalible here http://158.69.245.25/zenhax/MUSIC.BIN

If anyone can help out, that would be amazing.
Chris

EDIT: Just realized this might be better suited to the Game Archive forum.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Floigan Bros music.bin

Post by aluigi »

This script should be able to dump the raw data:

Code: Select all

get BASE_OFF long
for
    get DUMMY long
    if DUMMY == 0
        break
    endif
    get OFFSET long

    savepos TMP
    goto OFFSET
    get DUMMY long
    if DUMMY == 6
        get DUMMY longlong
        get ZERO long
        get SIZE long
        get OFFSET long
        log "" OFFSET SIZE
    endif
    goto TMP
next
The data seems to be 16bit PCM stereo 22050hz.
Just let me know if you want a playable wav file instead of the raw data (I don't know what are your audio skills or preferences)
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Floigan Bros music.bin

Post by aluigi »

This is the script with the wav generator:
http://aluigi.org/bms/floigan_bros.bms
Gumbo
Posts: 12
Joined: Sun Oct 05, 2014 3:58 pm

Re: Floigan Bros music.bin

Post by Gumbo »

Oh wow, thank you so much for the fast reply,I will test it out right now :D
I don't think the email notifications are working on the site, i enabled them but never received one.
Anyway, thank you again.
Chris