gpt4 book ai didi

python - 在 tkinter 上运行 voice_recognition 会导致卡住

转载 作者:行者123 更新时间:2023-11-30 22:58:08 24 4
gpt4 key购买 nike

我正在编写一个程序,你可以与它交谈,它会像 Siri 一样使用react。我正在使用 Google 语音识别和 espeak倾听和交谈。然后对话被打印到文本框。

当程序被要求使用语音识别来收听时,它会卡住并再次单击 GUI,然后它会说“没有响应”,是我运行错误还是无法在 tkinter 中运行语音识别? ?

为什么会结冰?

这是我迄今为止编写的完整代码:

import tkinter as tk
from subprocess import call as say
import winsound
import speech_recognition as sr

def cbc(tex):

return lambda : callback(tex)

def callback(tex):
button = "Listen"

tex.insert(tk.END, button)
tex.see(tk.END)# Scroll if necessary

def listen(tex):

say('espeak '+"Say,,your,,command,,after,,the,,beep", shell=True)
winsound.Beep(1000,500)

ltext = 'listening...'
tex.insert(tk.END, ltext)
tex.see(tk.END)

r = sr.Recognizer()

with sr.Microphone() as source:
damand = r.listen(source)

damandtxt = (recognizer_google(damand))
tex.insert(tk.END, damandtxt)
tex.see(tk.END)



top = tk.Tk()
tex = tk.Text(master=top)
tex.pack(side=tk.RIGHT)
bop = tk.Frame()
bop.pack(side=tk.LEFT)


tk.Button(bop, text='Listen', command=lambda: listen(tex)).pack()
tk.Button(bop, text='Exit', command=top.destroy).pack()

top.mainloop()

最佳答案

运行脚本时,您的计算机一次只能执行一件事。因此,例如,如果您希望它监听,计算机在执行当前命令时将无法运行任何其他命令。解决这个问题的方法是使用多个线程,这样你的计算机就可以同时做两件事。查看Python 的线程模块。说实话,我对这方面也不太了解,但这是我在自己的 GUI 中实现的。

import tkinter as tk
from subprocess import call as say
import winsound
import speech_recognition as sr

import threading

def cbc(tex):

return lambda : callback(tex)

def callback(tex):
button = "Listen"

tex.insert(tk.END, button)
tex.see(tk.END)# Scroll if necessary

def listen(tex):
def callback(tex):
say('espeak '+"Say,,your,,command,,after,,the,,beep", shell=True)
winsound.Beep(1000,500)

ltext = 'listening...'
tex.insert(tk.END, ltext)
tex.see(tk.END)

r = sr.Recognizer()

with sr.Microphone() as source:
damand = r.listen(source)

damandtxt = (recognizer_google(damand))
tex.insert(tk.END, damandtxt)
tex.see(tk.END)

a_thread = threading.Thread(target = callback(tex))
a_thread.start()

top = tk.Tk()
tex = tk.Text(master=top)
tex.pack(side=tk.RIGHT)
bop = tk.Frame()
bop.pack(side=tk.LEFT)


tk.Button(bop, text='Listen', command=lambda: listen(tex)).pack()
tk.Button(bop, text='Exit', command=top.destroy).pack()

top.mainloop()

基本思想是创建一个线程对象,然后给它一个要运行的函数。然后,当您想要运行该线程时,请调用该线程的 start() 方法。绝对read因为当同时运行多个线程时,事情可能会变得棘手。

关于python - 在 tkinter 上运行 voice_recognition 会导致卡住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36340393/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com