WAV Audio: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks (→Notes) |
imported>Ikskoks No edit summary |
||
| Line 1: | Line 1: | ||
== WAV == | |||
* ''' Format Type ''': Audio <br> | |||
* ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> | |||
=== Format Specifications === | |||
<pre> | <pre> | ||
// WAV Audio file format | // 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 | |||
</pre> | </pre> | ||
== | === MultiEx BMS Script === | ||
Not written yet.<br> | |||
=== Notes and Comments === | |||
* These are WAV Audio files.<br> | |||
=== Compatible Programs === | |||
* Winamp | |||
* Windows Media Player | |||
=== Other Games=== | |||
Used in the following games: | |||
* [[Urban Chaos]] | |||
* [[Stuart Little 2]] | |||
* [[Mat Hoffman's Pro BMX]] | |||
* [[SpongeBob SquarePants: Operation Krabby Patty]] | |||
* [[Enter the Matrix]] | |||
* [[Giana’s Return]] | |||
* [[Donald Duck: Quack Attack]] | * [[Donald Duck: Quack Attack]] | ||
* Absolute Evil | |||
* Zenek Zombie | |||
* Many more... | * Many more... | ||
[[Category:Complete WIP|WAVE Audio]] | |||
[[Category:Platform PC|WAVE Audio]] | |||
[[Category:CE Compressed|WAVE Audio]] | |||
[[Category:Format_Audio | Type: Audio]] | [[Category:Format_Audio | Type: Audio]] | ||
[[Category:Extension_wav | Extension: wav]] | [[Category:Extension_wav | Extension: wav]] | ||
[[Category:BMS_None | BMS: None]] | |||
[[Category:File Format]] | [[Category:File Format]] | ||
Revision as of 11:34, 20 February 2021
WAV
- Format Type : Audio
- Endian Order : Little Endian
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
Other Games
Used in the following games:
- Urban Chaos
- Stuart Little 2
- Mat Hoffman's Pro BMX
- SpongeBob SquarePants: Operation Krabby Patty
- Enter the Matrix
- Giana’s Return
- Donald Duck: Quack Attack
- Absolute Evil
- Zenek Zombie
- Many more...