-
Notifications
You must be signed in to change notification settings - Fork 17
/
realtime_speech.py
40 lines (31 loc) · 1.31 KB
/
realtime_speech.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
33
34
35
36
37
38
39
40
import speech_recognition as sr
import time
def listen_microphone():
# Khởi tạo recognizer
r = sr.Recognizer()
print("Bắt đầu nghe... (Nhấn Ctrl+C để dừng)")
while True:
try:
# Sử dụng microphone làm nguồn âm thanh
with sr.Microphone() as source:
print("\nĐang lắng nghe...")
# Điều chỉnh nhiễu môi trường
r.adjust_for_ambient_noise(source)
# Lắng nghe âm thanh
audio = r.listen(source)
try:
# Sử dụng Google Speech Recognition
text = r.recognize_google(audio, language="vi-VN")
print("Bạn nói:", text)
except sr.UnknownValueError:
print("Không thể nhận dạng giọng nói")
except sr.RequestError as e:
print("Lỗi từ Google Speech Recognition service; {0}".format(e))
except KeyboardInterrupt:
print("\nĐã dừng nghe.")
break
except Exception as e:
print("Lỗi:", str(e))
continue
if __name__ == "__main__":
listen_microphone()