Skip to content
Fabian-Robert Stöter edited this page Nov 20, 2016 · 35 revisions

Python in Audio Research

Start Python Audio in 3 Minutes

pip install soundfile
pip install numpy

Graphical Dev Environments

  • Atom + Plugins
  • [Spyder]
  • [pyCharm]
  • [Eclipse]

Tutorials/Books

  • Python Data Science Handbook Excellent Book, look for the Tutorial notebooks
  • [http://www.scipy-lectures.org/index.html](Deep Introduction to Numpy and Scipy)

Basic Audio Packages

Read/Write

Do not use scipy.io.wavfile, because it doesn't scale the data to [0, 1] also it doesn't

Courses/Notebooks

Visualisation/Plotting

  • matplotlib
  • seaborn
  • bokeh

Statistics

  • Statsmodels
  • Scipy.stats

Speed

  • Numba
  • CFFI
  • PyCUDA (FFT)

Clone this wiki locally