Hacking Tatsunoko vs. Capcom music hack

fgsfdsyo said:
Alright, apparently in the JP version of Tatusnoko vs Capcom: UAS the training stage has a different theme than the American one. I wanted to change the American version to have that song, replacing the american stage_17.ssd

I thought it would be as easy as taking out the JP stage_17.ssd and inserting it into the US stage_17.ssd, but that's not the case.

When I do extract the JP one and insert it into the US, the game doesn't even load. Using CFG Loader and USB Loader GX, the game doesn't even get past the application. It just hangs right there. Is there ANY way of getting the UAS JP Training theme and replacing the US Training theme? JP one is bigger by like 3MB.

You have to follow the instructions from step 1, but don't replace the "us" folder. Replace the stage 17 ssd in the folder and then create the partition and re-insert it. I can't stress enough that the wii scrubber replace function is terrible.
 
accel said:
I just have one question: what's the name of the song used in the Wifi Connection Menu? I don't recall ever hearing it in CGoH.
Sorry guys, I really hate to ask again. I've checked all of the pages and I haven't seen anything on the *new* WFC song. I really don't want to turn on my Wii just to listen to it, so yeah...

Thanks.
 
accel said:
accel said:
I just have one question: what's the name of the song used in the Wifi Connection Menu? I don't recall ever hearing it in CGoH.
Sorry guys, I really hate to ask again. I've checked all of the pages and I haven't seen anything on the *new* WFC song. I really don't want to turn on my Wii just to listen to it, so yeah...

Thanks.

What new wi-fi song? There isn't even wi-fi in cross generation of heroes. The music is the same.
 
That's why I kept asking, I'm well aware that CGoH didn't have WFC. lol

I guess I was mislead when I read the description of the copy I got (I failed multiple times when I was trying to do this myself).

The WFC song in the one I have definitely different from the original copy of the UAS WFC song. Sorry for wasting your time, I think I know who I'm supposed to ask now!
 
accel said:
That's why I kept asking, I'm well aware that CGoH didn't have WFC. lol

I guess I was mislead when I read the description of the copy I got (I failed multiple times when I was trying to do this myself).

The WFC song in the one I have definitely different from the original copy of the UAS WFC song. Sorry for wasting your time, I think I know who I'm supposed to ask now!
blink.gif
 
Tonitonichopchop said:
accel said:
That's why I kept asking, I'm well aware that CGoH didn't have WFC. lol

I guess I was mislead when I read the description of the copy I got (I failed multiple times when I was trying to do this myself).

The WFC song in the one I have definitely different from the original copy of the UAS WFC song. Sorry for wasting your time, I think I know who I'm supposed to ask now!
blink.gif

I know...it's weird. I'll edit this post later with an mp3 recording of the song that plays as I don't have proper video capture equipment. I also just listened to the original WFC song just to make sure I wasn't hallucinating...and I'm not.
blink.gif
I hope I'm not upsetting anyone by constantly posting about this.
EDIT: I can't record it, oh well.
EDIT Again: I just went through everyone's character themes...it turns out it was PTX-40A's theme. Sorry for wasting everyone's time.
 
Can you make a quick tutorial about how to swap BGMs while keeping others? I actually want the UAS version of the character select BGM and the Orbital Ring BGM but I want to replace everything else.
 
squall23 said:
Can you make a quick tutorial about how to swap BGMs while keeping others? I actually want the UAS version of the character select BGM and the Orbital Ring BGM but I want to replace everything else.

I am. I will say this now, and never again. I will not release anything until wednesday next week. I'm busy with my family visitng and so my time is limited. I will release everything I promised, just not right away.
 
Hi all, someone pointed me to this thread and I think I have something y'all might be interested in. At the bottom of my vgm ripping page I've added srt_inject_dsp, which allows you to replace the headers in srt files. It can take as a source either another .srt (for instance if you want to copy a track from another game) or a .dsp pair, one file for each channel, which you can create from ordinary .wav files with DSPADPCM.exe from the GC/Wii devkit.

Examples of use:

Code:
srt_inject_dsp bgm.srt 10 s_bgm_28.ssd newL.dsp newR.dsp

This will write a new s_bgm_28.ssd file with the audio data from newL.dsp and newR.dsp. It will also replace the stream header for stream id 10 in bgm.srt so that the file will play correctly (that is without the fuzziness I've seen complaints of, it's important for to have the correct coefficient table in the .srt).

Another example:

Code:
srt_inject_dsp bgm.srt 10 -c otherbgm.srt 3

This will copy the stream header from stream id 3 in otherbgm.srt to stream id 10 in bgm.srt. If otherbgm.srt was from another game (say the Japanese release), you would also have to copy over the corresponding .ssd file.

What .ssd corresponds to what stream id is spelled out in this .bat file that I put together for another purpose (for rebuilding the BGM as .zwdsp to play in vgmstream): http://hcs64.com/files/tvcsrt.bat

The guy I was talking to hasn't rebuilt Wii ISOs before so he wasn't able to test this out for me, I hope someone here can give it a spin. Let me know if you need any help, you can reach me on AIM or my web site.
 
Tonitonichopchop said:
squall23 said:
Can you make a quick tutorial about how to swap BGMs while keeping others? I actually want the UAS version of the character select BGM and the Orbital Ring BGM but I want to replace everything else.

I am. I will say this now, and never again. I will not release anything until wednesday next week. I'm busy with my family visitng and so my time is limited. I will release everything I promised, just not right away.

Damn, people are bustin' your chops. lol. If you guys don't want to wait for an update, rebuild your custom music list yourself. I've rebuilt and swapped music like 4-5 times already, the process isn't hard people. It takes a little time yes, but you can do it too.
 
hcs said:
Hi all, someone pointed me to this thread and I think I have something y'all might be interested in. At the bottom of my vgm ripping page I've added srt_inject_dsp, which allows you to replace the headers in srt files. It can take as a source either another .srt (for instance if you want to copy a track from another game) or a .dsp pair, one file for each channel, which you can create from ordinary .wav files with DSPADPCM.exe from the GC/Wii devkit.

Examples of use:

Code:
srt_inject_dsp bgm.srt 10 s_bgm_28.ssd newL.dsp newR.dsp

This will write a new s_bgm_28.ssd file with the audio data from newL.dsp and newR.dsp. It will also replace the stream header for stream id 10 in bgm.srt so that the file will play correctly (that is without the fuzziness I've seen complaints of, it's important for to have the correct coefficient table in the .srt).

Another example:

Code:
srt_inject_dsp bgm.srt 10 -c otherbgm.srt 3

This will copy the stream header from stream id 3 in otherbgm.srt to stream id 10 in bgm.srt. If otherbgm.srt was from another game (say the Japanese release), you would also have to copy over the corresponding .ssd file.

What .ssd corresponds to what stream id is spelled out in this .bat file that I put together for another purpose (for rebuilding the BGM as .zwdsp to play in vgmstream): http://hcs64.com/files/tvcsrt.bat

The guy I was talking to hasn't rebuilt Wii ISOs before so he wasn't able to test this out for me, I hope someone here can give it a spin. Let me know if you need any help, you can reach me on AIM or my web site.

I'll try it out next wednesday. It sound really great, and if I get results I will definetly post about it as a tutorial. Now if only someone could hack those thp files back as the endings...

ciris said:
Tonitonichopchop said:
QUOTE(squall23 @ Feb 9 2010, 01:47 PM) Can you make a quick tutorial about how to swap BGMs while keeping others? I actually want the UAS version of the character select BGM and the Orbital Ring BGM but I want to replace everything else.

I am. I will say this now, and never again. I will not release anything until wednesday next week. I'm busy with my family visitng and so my time is limited. I will release everything I promised, just not right away.

Damn, people are bustin' your chops. lol. If you guys don't want to wait for an update, rebuild your custom music list yourself. I've rebuilt and swapped music like 4-5 times already, the process isn't hard people. It takes a little time yes, but you can do it too.

I've been asked to many times when I'll have a custom music tutorial. Unlike some people I do have a life and I don't spend every waking moment with this crap. Thanks for understanding where I'm coming from
yaywii.gif
 
Can someone who has done this correctly tell me how am i supposed to add the partition?

I load the ISO on Wiiscrubber, then what do i click? The 'WII DISC' or the 'Partition:0' and then Load? It's very ambiguous the way OP posted it and this is clearly a key step on getting this done.

What should the Partition:0 show once i 'loaded' it, if that's the way it's supposed to be done, cuz everytime i load it, it says (BAD), just like this:

9u97x0.png



So any help?

EDIT: Figured it out, THAT is how it's supposed to look, like a corrupt partition, however it does play fine on the Wii. For anyone wondering you should Right click the Partition:0 > Unencrypted Partition > Load and load the Partition1.img you created with Partition Builder.
 
Tonitonichopchop said:
squall23 said:
Can you make a quick tutorial about how to swap BGMs while keeping others? I actually want the UAS version of the character select BGM and the Orbital Ring BGM but I want to replace everything else.

I am. I will say this now, and never again. I will not release anything until wednesday next week. I'm busy with my family visitng and so my time is limited. I will release everything I promised, just not right away.

BUMP..........
 

Site & Scene News

Popular threads in this forum