Related: audio processing


python’s builtin audio processing package (docs here), implemented in pure python.

It only supports the PCM encoding and integer bit depth.

It’s public interface consists only of wave.open,1 which returns either a Wave_write or Wave_read object.

Note

The wave module doesn’t support audio playback.

Footnotes

  1. Files are always opened in binary mode, regardless of whether you specify them or not. ↩