Search found 8 matches
- Thu Jun 02, 2011 12:00 am
- Forum: Other Ports
- Topic: ScummVM in JavaScript?
- Replies: 12
- Views: 17356
Well if you can get Quake 2 running in a browser, I guess it must be possible to get ScummVM online :wink: I'll then be able to play DOTT all day at work, awesome :P That's not really running in a browser, and it's not the original source code. It's running in the Java VM and it's a source port to ...
- Wed Jun 01, 2011 3:38 am
- Forum: Other Ports
- Topic: ScummVM in JavaScript?
- Replies: 12
- Views: 17356
- Mon May 30, 2011 9:50 pm
- Forum: General Discussion
- Topic: SCI Compression Tool
- Replies: 30
- Views: 20741
- Sun May 15, 2011 7:00 am
- Forum: General Discussion
- Topic: SCI Compression Tool
- Replies: 30
- Views: 20741
- Sat May 14, 2011 5:48 am
- Forum: General Discussion
- Topic: SCI Compression Tool
- Replies: 30
- Views: 20741
OK, I'm using KQ5 now with compressed audio. The python script below rewrites the AUDIO001.002 from raw sounds to WAVE sounds, so compress_sci understands it. It also rewrites AUDIO001.MAP to match the new WAVE formatted file, which compress_sci needs to create an offset translation table. The files...
- Sat May 14, 2011 2:24 am
- Forum: General Discussion
- Topic: SCI Compression Tool
- Replies: 30
- Views: 20741
I wrote a python script to convert the KQ5 AUDIO001.002 to a format compress_sci will work on. I just use the AUDIO001.MAP file to run each resource through python's wave module then write them out to one file. compress_sci dropped the file size (using vorbis default settings) from 93,229KB to 35,70...
- Fri May 13, 2011 9:31 am
- Forum: General Discussion
- Topic: SCI Compression Tool
- Replies: 30
- Views: 20741
The audio in KQ5CD is in an earlier format, but the compression tool does support it, AFAIK. The digital audio file decoding code can be found in the SCI engine in sci/resource_audio.cpp. Check loadResource(), loadFromAudioVolumeSCI1(), loadFromAudioVolumeSCI11(), readAudioMapSCI1() and readAudioMa...
- Fri May 13, 2011 5:54 am
- Forum: General Discussion
- Topic: SCI Compression Tool
- Replies: 30
- Views: 20741
Digging up this old thread because I have a related question. The audio file from KQ5 from the KQ collection is in a different format -- it's not RESOURCE.[AUD|SFX], it's AUDIO001.002 -- but it still has a .MAP file associated with it. It's not recognized by the compression utility. Is this simply u...