Opening and saving Waveform Audio File Format (WAV) files.
It extends the AudioPCM class to provide functionality for opening and saving audio files in the Waveform Audio File Format (WAV). Waveform Audio File Format is a Microsoft and IBM audio file format standard for storing an audio bitstream on PCs. It is an application of the Resource Interchange File Format (RIFF) bitstream format method for storing data in "chunks".
Example
>>> # Create an instance and open the WAV file
>>> wave_io = WaveIO()
>>> wave_io.open("input.wav")
>>> # Save the audio content to a new WAV file
>>> wave_io.save("output.wav")
>>> # Save a fragment of the audio content to a new WAV file
>>> frames = wave_io.read_frames(1000)
>>> wave_io.save_fragment("fragment.wav", frames)