Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

mondeja/waves

Repository files navigation

waves

PyPI Python versions Github Pages Build status on Github Actions Code coverage from coveralls.io

Utility to work with WAV files in a simple way.

It's built on top of pysndfile (a Cython wrapper for libsndfile) and shouldn't be confused with the builtin library wave.

Installation

pip install waves

You can pass the following extras to the installation:

  • play: you will can listen the sound using sound.play using pygame.
  • plot: you will can paint the spectrum of sounds as figures in matplotlib canvas using sound.plot.
pip install waves[play,plot]