tags:

views:

71

answers:

2

how to process an audio file using python

+2  A: 

Use an audio module.

Mark Byers
+1  A: 

In addition to an audio module (I've used PyAudio before FWIW), if you want to add effects or various filters (chopping out frequencies, etc), use Numpy as well; the matrix transforms there make it pretty painless to apply whatever digital filter you like.

Nick T