Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

alternatives to pyaudio for audio processing in python? [closed]

what other options are there for recording audio and processing the raw signal integers in python besides pyaudio?

pyaudio is great, but I have found it too unstable for reliable use, especially on non-linux platforms. I don't really care too much about windows, but Mac OSX and other unix flavors I would like to support.

like image 614
lollercoaster Avatar asked Oct 21 '22 20:10

lollercoaster


1 Answers

I think that snack can help you http://www.speech.kth.se/snack/

from Tkinter import *
import tkSnack

root = Tk()
tkSnack.initializeSnack(root)
c = tkSnack.Sound(file='test.wav')
c.record()
root.after(5000, c.stop)
root.mainloop()
like image 92
ederwander Avatar answered Oct 23 '22 11:10

ederwander