Моя система: Windows 10 64-Bit, Python 3.5.4, pip 9.0.1
Мой код:
#. Tkinter codes
#.........................
#.........................
def main():
r = sr.Recognizer()
with sr.Microphone() as source:
status.set("Listening...") #Tkinter Label
sound = r.listen(ses_kaynagi)
try:
status.set("Processing...") #Tkinter Label
word=r.recognize_google(sound, language="tr-tr")
print(word)
except:
pass
while True:
keyboard.add_hotkey('ctrl+alt', main) #Keyboard Library
Я заморозил свой код с помощью PyInstaller (pyinstaller.exe --нефайл) все ок.Но когда я скрываю консоль (pyinstaller.exe --onefile --noconsole или --windowed), мой код входит в блок исключений.Так что word=r.recognize_google(sound, language="tr-tr")
не работает.