| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

Adding and Editing Sounds

Page history last edited by James Koppel 6 years, 4 months ago

Heroes II stores its sounds as a raw WAV file, a WAV file without headers. 

 

See Packaging Resources to learn how to extract the sound files from the original game. You can open and edit the .82M sound files using any sound editor capable of importing raw WAV data. We recommend Audacity, http://audacity.sourceforge.net/about/ . Use the "Import Raw Data" menu option and set it to import as 8-bit mono with a sampling rate of 22050.

 

 

You can make sounds using any sound editor and then export them in the same format. If you are using Audacity, enter its preferences, and, under "Quality," set Sample Rate to 22050. Run "Export Audio," set the file format to "Other Uncompressed," set the header to RAW / no header, and set the format to 8-bit unsigned PCM. 

 

Alternatively, if you save as an 8-bit WAV with a header, you will need to strip the 44-byte header. Run the following command on a Mac or Unix-based system:

 

dd bs=44 skip=1 if=sound.wav of=sound.82M

 

If you import a WAV file that does have a header, it will still work, but there will be a brief clicking noise at the beginning.

 

 

While all of the original games sounds are .82M files, the game also supports a couple different formats. The "8", "2", and "M" are actually codes that tell the game how to read the file, similar to the WAV headers which it omits. Changing the "2" to a "1" or "4" (i.e.: .81M and .84M files) means that the sample rate should be 11025 or 44100. Changing the "8" to a "6" or the "M" to anything else will increase the "sample type," although we don't know what this means.

Comments (0)

You don't have permission to comment on this page.