I have a simple, freeware executable (48KB in size, that's about all the info I have on it) I got a few years back and can't remember where it's from. It's a worthless program to me now, but it has this really beastly .midi song (or some type of music file) playing in the background. I have tried a few decompilers, such as Universal Extractor. I don't want source code, what I would love to get is the music file, because I have no idea what it is called. I don't have a microphone, or I would use a service such as SoundHound or something.. Would anyone happen to know of a decompiler that is capable of doing this? Many thanks to any suggestions!
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
|
An alternative solution would be to open the executable and record the song directly with software such as Audacity and save it. |
|||||||
|
|
A manual solution would be to open up the EXE in a hex editor and search for a MIDI header. This page describes the MIDI format a little bit, including the header pattern. If/once you find the header, you could either manually track the chunks until you reach the end, or copy everything after that point into a separate .mid file and see if any MIDI-editing programs can open it and truncate the non-MIDI data. |
|||||
|
|
If it's an Windows application, you could try with ResHacker. It should work if the midi was set as a resource to a Vistual Studio project. |
|||||||
|