このコードを使用して、金曜日のような仮想アシスタントを作成しようとしています
import os
from gtts import gTTS
import time
import playsound
import speech_recognition as sr
while True:
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
text = get_audio()
if "who are you" in text:
speak(" I am Monday the virtual assistant")
そして、私はそれにウルフラムアルファを入れる方法を考えていたので、...を検索すると、ウルフラムアルファからの答えが話されます。
どんな助けでも素晴らしいでしょう:)