Google Speech API を使用しています
システムは次のように機能します。
1- ユーザーが「開始」ボタンをクリックすると、システムは記録を開始します。
2- ユーザーが「停止」ボタンをクリックすると、システムは記録を停止し、結果を表示します。
彼女は私の「スタート」ボタンの定義です
def Recite():
r = sr.Recognizer()
with sr.Microphone() as source:
audio = r.listen(source)
try:
global s
s = r.recognize_google(audio,language ="ar-AR")
except sr.UnknownValueError:
print("Google Speech Recognition could not understand audio")
title4= tk.Label(text ="غير مفهوم ", foreground="red")
title4.grid(column=0,row=16)
except sr.RequestError as e:
print("Could not request results from Google Speech Recognition service; {0}".format(e))
title5= tk.Label(text ="حدث خطأ ", foreground="red")
title5.grid(column=0,row=16)
私の質問は、ユーザーが記録を停止して「停止」ボタンをクリックしたいときに別の定義を呼び出すにはどうすればよいですか?