Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I used a free program called FairStars CD ripper, and can make custom .OGG's with almost the same quality as lossless WAV's, of course this means over 400Mb of music files but it also means better sound quality. I used it to get better quality music in PowerSlave Ex by ripping from the CD so the 120Mb of music became over 500mb of music and sounds better.
I can't link you to the programs website for legal reasons ( it can be abused by Music Pirates) but google is your friend, just make damn sure you scan your download with at least 2 AV programs before opening it to make sure you are not getting Malware on your rig. Or just skip that step ans look for the .OGG files out there. I also can't share any links to the Quake .OGG soundtrack for legal reasons too (the Quake Soundtrack is copyrighted music and I don't want the RIAA sueing me for all I've got).
Or FLAC, lossless but compressed https://www.sony.com/electronics/rip-cd-transfer-lossless-digital-music-collection
Looks like Darkplaces can use ogg or wav for music https://icculus.org/twilight/darkplaces/readme.html#SoundFeatures
Looks like Quakespasm can use mp3 or ogg or flac
http://quakespasm.sourceforge.net/Quakespasm.html#ss3.1
Sure wish they had a common lossless format, for Darkplaces I got to make wav, for Quakespasm I got to use flac.
EDIT: it works, I just made a typo, sounds instead of sound.
Flac should be just as good as wav. While it is compressed, it is also lossless. I doubt decoding would take many cpu cycles.
The music is in game.cue and game.gog files (these are a CD image basically cue and bin file)
You can rip it to .wav using many tools, I used Linux's bchunk:
bchunk -w game.gog game.cue track
You can discard track1 as it was the binary track
So now you have all the wav files, just go to your darkplaces folder, and inside the id1 folder make a sound folder then a folder inside of that called cdtracks
Copy all your .wav files to this new folder.
Now they need to be named correctly, in my case I had to add an extra 0 to all the tracks.
Track002.wav up to Track010.wav
I decided to convert all of my .wav files to .ogg since darkplaces supports that, I used:
ffmpeg -i track000.wav -acodec libvorbis track002.ogg
Repeated the ffmpeg encoding for each file, and deleted all the .wav files afterwards. Launched up darkplaces, and had cd track sound, awesome!
Hope someone finds this useful.