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.
Floigan Bros music.bin
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Floigan Bros music.bin
This script should be able to dump the raw data:
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)
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
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)
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Floigan Bros music.bin
This is the script with the wav generator:
http://aluigi.org/bms/floigan_bros.bms
http://aluigi.org/bms/floigan_bros.bms
-
- Posts: 12
- Joined: Sun Oct 05, 2014 3:58 pm
Re: Floigan Bros music.bin
Oh wow, thank you so much for the fast reply,I will test it out right now
I don't think the email notifications are working on the site, i enabled them but never received one.
Anyway, thank you again.
Chris
I don't think the email notifications are working on the site, i enabled them but never received one.
Anyway, thank you again.
Chris