HomeForumsWhat's newResources 
 
 
Audio Convert
GaRlic - Jul 24, 2003
 GaRlic Jul 24, 2003
what tools are used to create the audio (from pcm?) as in the competition (knuckles) entry and the sega examples?

 Reinhart Jul 25, 2003
A simple WAV to RAW was used.

The file produced need little change to fit the C sound file seen in samples.

I suggest you take a look at Rockin'B's sound converter...

 Zero 9 Jul 25, 2003
How do you use binary .PCM files for audio, instead of using the .h file produced by that application?

 GaRlic Jul 26, 2003
thanks for the info on the tool. every time i try to convert wav 2 pcm it gives me one pcm file, and a basically empty header file. any idea whats up with that? can you also explain the change it needed? was it just hex to decimal? i also think a binary file would probably work better but i've definatly not seen any examples using one.

 Zero 9 Jul 26, 2003
I've got the nearly empty .h for most of my wav conversions also (22050Hz, 8bit, Mono, among other settings).

 Reinhart Jul 27, 2003
Here is a better explanation of the process:

1 : convert a .WAV sound file to a raw format

2 : convert this raw file into a C struture (using a bin2c prog, it is easily found on the net)

3 : Your C file should looks like this :



Code:
  
#define SELECT_LEN 26686

 char select[]=

 {

 0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,

 ....

 0xff,0xff,0xff,0xff,0xff,0xff,0xff

 };

Add this at the end of file :

Code:
  
Uint32 select_size = sizeof(select);

PCM select_dat = {(_Mono | _PCM8Bit) , 0 , 127 , 0 , 0x7f00 , 0 , 0 , 0 , 0};

You should en up with a working sound file (it should make some noise at least)

Hope this help ...

 GaRlic Jul 27, 2003
got it, much thanks

 RockinB Jul 31, 2003
Hello busy contest fighters!

Sorry for the problems with the previous SSwavetools.exe.

Due to this discussion, I removed a lot of little bugs from the program. Now it does a much better job.

Go there to download the new beta 2: The Rockin-B news...

I very look forward to the end of the contest. Hopefully we will have some cool new apps and games for Saturn!

Bye,

The Rockin'-B

 Alexvrb Aug 2, 2003
Does anyone have any experience with the music in Shining the Holy Ark or Grandia? I just bought both of them, they will probably arrive sometime next week. I've already played STHA, and I don't recall it having any sort of handy sound test, so recording it off the system would be a pain. So, I am hoping I can convert/rip the music directly from the disc.

 M3d10n Aug 3, 2003
Grandia uses ADX streams packed into a massive .STZ file.

There is a Saturn utility made by some Japanese dude called CINEPAK.EXE that can open and convert .ADX, .CPK, .CAK (Cinepak video with ADX audio), .CAX (packed .CAK files) and .SZT (packed .ADX files).

That app kicks butt, since it can even convert Burning Rangers' and Lunar 2's videos to .AVI perfectly, with audio.

Google for cp100b26.lzh.

 Alexvrb Aug 5, 2003
Sweet, I just got them in the mail. Thanks for the info, I'm busy converting away now. You're right, this app is excellent! If only I knew what those options did, they probably arent necessary for my purposes, but it bugs me a bit.

I don't suppose anyone knows anything about the audio in Shining the Holy Ark? What are .mdx / .mdt files?

 GaRlic Aug 6, 2003
so has anyone gotten cdda to work?