2
我正在編寫一個語音錄製應用程序,並且我想在用戶在Tkinter中按下按鈕時開始錄製,並在用戶釋放按鈕時停止錄製。使用Tkinter在while循環中錄製語音
import Tkinter
def record():
while True
Recordning runtines...
if <button is released>
stop audio steam...
break
main = Tkinter.Tk()
b = Tkinter.Button(main, text='rec', command=record)
b.place(x="10", y="10")
main.mainloop()
如何實現「if按鈕被釋放」?我需要使用線程嗎?