I'm trying to rip samples from Sonic The Fighters.
Technical discussion about the VGM format, and all the software you need to handle VGM files.
Moderator: Staff
I'm trying to rip samples from Sonic The Fighters.
So, this is my first time really getting into any type of VGM ripping, but I was wondering if it was possible, and how would I be able to rip samples from Sonic the Fighters. Is there any softwaree available for that, I know it uses the MultiPCM chip but I'm not sure how to access that either. Could use some help.
- ValleyBell Offline
- Posts: 4964
- Joined: 2011-12-01, 20:20:07
- Location: Germany
Re: I'm trying to rip samples from Sonic The Fighters.
Sonic the Fighers doesn't use MultiPCM - it uses the SCSP (YMF292).
If you know how to compile C programs, you could try to compile M2MidiDec.
The compilation command for GCC is
The tool has a WAVE dump option.
If you know how to compile C programs, you could try to compile M2MidiDec.
The compilation command for GCC is
Code: Select all
gcc Soundfont.c M2MidiDec.c -o M2MidiDec
Re: I'm trying to rip samples from Sonic The Fighters.
What is the line that I have to modify in order to not get this error? "gcc.exe: error: gcc: No such file or directory"ValleyBell wrote: ↑2024-05-01, 17:23:39 Sonic the Fighers doesn't use MultiPCM - it uses the SCSP (YMF292).
If you know how to compile C programs, you could try to compile M2MidiDec.
The compilation command for GCC isThe tool has a WAVE dump option.Code: Select all
gcc Soundfont.c M2MidiDec.c -o M2MidiDec
- ValleyBell Offline
- Posts: 4964
- Joined: 2011-12-01, 20:20:07
- Location: Germany
Re: I'm trying to rip samples from Sonic The Fighters.
It seems like you pass "gcc" as an additional parameter to the GCC compiler?
The "gcc" in the command I listed is the program to call - not an additional parameter.
If you still can't get it to work, you should post either a screenshot or the contents of the terminal as a code block so that we know what you are doing exactly and how you do it.
The "gcc" in the command I listed is the program to call - not an additional parameter.
Code: Select all
wrong: gcc.exe gcc Soundfont.c M2MidiDec.c -o M2MidiDec
correct: gcc.exe Soundfont.c M2MidiDec.c -o M2MidiDec