Scrolling Game Development Kit Forum

SGDK Version 2 => General Discussion => Topic started by: SmartBoy16 on 2007-12-10, 08:02:00 AM

Title: Extract Music from SGDK2
Post by: SmartBoy16 on 2007-12-10, 08:02:00 AM
is there a way to get the music file used in an sgdk2 file? ???
Title: Re: Extract Music from SGDK2
Post by: durnurd on 2007-12-10, 09:02:52 AM
If you generate the project (F7), it will create the source files necessary to compile and link the project, including the binary data for the sound.  Find the folder the .SGDK2 file is in, look for the folder underneath that by the same name as the file, and find the file with the same name as the sound object in the .SGDK2 file, with a .bin extension.  If your object is called Music.cs, find Music.bin.  Then copy it somewhere else and change the extension on the file to the original file type, and there's the original music.
Title: Re: Extract Music from SGDK2
Post by: bluemonkmn on 2007-12-11, 07:05:03 AM
What appropriate timing for that question.  Just yesterday I added a feature to more easily extract the binary data to a file.  But until then, Durnurd's method should work well.  The trick is that you have to know the format of the data so you know what extension to put on the file.  Most of the music included in the library is in MOD format.