Examples of WAVE Files

The following PCM WAVE file has a 11.025 kHz sampling rate, mono, 8 bits per sample:

RIFF('WAVE'        fmt(1, 1, 11025, 11025, 1, 8)
                         data( <wave-data> ) )

The following PCM WAVE file has a 22.05 kHz sampling rate, stereo, 8 bits per sample:

RIFF('WAVE'        fmt(1, 2, 22050, 44100, 2, 8)
                         data( <wave-data> ) )

The following PCM WAVE file has a 44.1 kHz sampling rate, mono, 20 bits per sample:

RIFF('WAVE'        INFO(INAM("O Canada"Z))
                         fmt(1, 1, 44100, 132300, 3, 20)
                         data( <wave-data> ) )