I’m trying to extract audio from a game I own, to maybe be able to listen to it outside of the game, or replace the audio with something of my own.
The company that makes the game has gone lengths to hide what the audio is encoded in, but by looking at the hex data I’m pretty sure that it’s multiple audio parts, all encoded in 8-bit fixed-point, sampled at 44100Hz. This is consistent with previous iterations of the game, but it seems that the company has gone from 8-bit unsigned PCM to 8-bit fixed point, which seems that nor Audacity nor Adobe Audition have as available options for import.
The clue is a long “000000000000000000000000000000000000000000000000” hex which separates parts of the file and appears 38 times in the file, along with a header of 32-bit unsigned integers similar to this one:
02000000 CD050000 0A000000 44AC0000 00C00600
The first 4 parts of the header are consistent (channels, ?, 10 (encoding type), 44100 sampling rate) and the last one I’m guessing is data length, since it’s the only one that’s changing.
Am I just pulling stuff out of thin air, or am I close to something?