-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.py
32 lines (26 loc) · 1.09 KB
/
project.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# https://www.mertmekatronik.com/turkce-speech-recognition
# https://tr.linkedin.com/pulse/pythonda-sesli-asistan-olu%C5%9Fturmak-yunus-emre-g%C3%BCndo%C4%9Fmu%C5%9F
# Çıkan sorunu şu linkl çözdüm
# https://stackoverflow.com/questions/55984129/attributeerror-could-not-find-pyaudio-check-installation-cant-use-speech-re
import speech_recognition as sr
#metni sese dönüştürmek için
from gtts import gTTS
#sistem dosyalarını daha rahat şekilde açmak için
import os
r = sr.Recognizer()
with sr.Microphone() as source:
r.adjust_for_ambient_noise(source)
print("Arka plan gürültüsü:" + str(r.energy_threshold))
try:
ses = r.listen(source, timeout=2, phrase_time_limit=7)
yazi = r.recognize_google(ses, language='tr-tr')
print(yazi)
tts = gTTS(yazi, lang='tr')
tts.save("output.mp3")
os.system("output.mp3")
except sr.WaitTimeoutError:
print("Dinleme zaman aşımına uğradı")
except sr.UnknownValueError:
print("Ne dediğini anlayamadım")
except sr.RequestError:
print("İnternete bağlanamıyorum")