Python Google Voice Assistance Setup on MacOS - with trouble-shooting on installing pyaudio (廣東話)
Source codes:
import os
import time
import playsound
import speech_recognition as sr
from gtts import gTTS
def speak(text):
tts = gTTS(text=text, lang="en")
filename = "voice.mp3"
tts.save(filename)
playsound.playsound(filename)
def get_audio():
r = sr.Recognizer()
with sr.Microphone() as source:
audio = r.listen(source)
said = ""
try:
said = r.recognize_google(audio)
print(said)
except Exception as e:
print("Exception: " + str(e))
return said
speak("I am ready!")
print("I am ready!")
text = get_audio()
if "hello" in text:
print("Hello, how are you?")
speak("hello, how are you?")
if "name" in text:
print("I am a robot!")
speak("I am a robot!")
if "today" in text:
print("Today is 17 Oct 2021.")
speak("Today is 17 Oct 2021.")
# pip install SpeechRecognition
# pip install gTTS
# pip install playsound
# pip install pyaudio (will have problems)
# way out: download pyaudio https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyaudio
# pip install PyAudio‑0.2.11‑cp39‑cp39‑win_amd64.whl
Other Videos By 夏sir網上教室
2021-11-13 | Diving game 2021 (3C Lisa) |
2021-11-06 | 如何在 Python 程式中使用 Google Teachable Machine 建立的 model |
2021-11-04 | Python Face Recognition Demo |
2021-11-03 | Python Face Recognition |
2021-11-02 | Python 五行 codes下載 YouTube 影片 |
2021-10-25 | 詩歌 - Love was when |
2021-10-23 | 詩歌 - Let us send the light |
2021-10-22 | 詩歌 - Come Holy Spirit |
2021-10-22 | 詩歌 - The Lord is my shepherd |
2021-10-22 | 詩歌 - 恩賜 (絕版) |
2021-10-18 | Python Google Voice Assistance Setup on MacOS - with trouble-shooting on installing pyaudio (廣東話) |
2021-10-13 | 如何利用 Python 建立點陣圖 (廣東話) |
2021-10-12 | Sqlite Studio export table as CSV format |
2021-09-26 | Two's complement representation (4 bit) with CoSpaces EDU |
2021-09-24 | Instant OCR (Live Text) in iOS 15 |
2021-09-21 | ICT in supermarkets (self-service check out/kiosk) |
2021-09-16 | 3B@2014 Doreme Heat |
2021-09-16 | 1A@2014 Doreme Heat |
2021-09-16 | 1C@2014 Doreme Heat |
2021-09-16 | 5C@2014 Doreme Heat |
2021-09-16 | 1A@2014 Doreme Heat |