WAV Audio: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
imported>Ikskoks
Line 49: Line 49:
List of games using this file format:
List of games using this file format:
* Absolute Evil
* Absolute Evil
* Ace Lightning (PC) (*.WAV)
* [[Donald Duck: Quack Attack]]
* [[Donald Duck: Quack Attack]]
* [[Enter the Matrix]]
* [[Enter the Matrix]]

Revision as of 17:25, 27 June 2022

WAV


Format Specifications

// WAV Audio file format

// little endian

//RIFF chunk
4 bytes (char) - chunk ID // "RIFF"
4 bytes (uint32) - chunk size
4 bytes (char) - format // "WAVE"

//fmt sub-chunk
4 bytes (char) - subchunk ID // "fmt "
4 bytes (uint32) - subchunk size
2 bytes (uint16) - audio format // "1"
2 bytes (uint16) - number of channels 
4 bytes (uint32) - sample rate
4 bytes (uint32) - byte rate
2 bytes (uint16) - block align // "2"
2 bytes (uint16) - bits per sample

//data sub-chunk
4 bytes (char) - subchunk ID // "data"
4 bytes (uint32) - data size
x bytes - raw sound data

MultiEx BMS Script

Not written yet.

Notes and Comments

  • These are WAV Audio files.

Compatible Programs

  • Winamp
  • Windows Media Player

Games

List of games using this file format: