gpt4 book ai didi

Python 3 和 Pocket Sphinx

转载 作者:行者123 更新时间:2023-11-28 18:17:23 26 4
gpt4 key购买 nike

我正在尝试通过对音频控制的音乐播放器进行编程,为不习惯使用按钮的祖父创建一个简单的音乐播放器。我正在使用带有 Python 3 和 Pocket Sphinx 的 Raspberry Pi 3。因为 Pocket Sphinx 不需要互联网,所以我会使用它,因为我的祖父无法访问互联网。

我的问题是如何获取“说出”的值,例如:“播放按钮”并让它播放波形文件“按钮”?

这是我必须构建的基本程序:

import speech_recognition as sr
import pygame
from pygame import mixer
mixer.init()

r = sr.Recognizer()
m = sr.Microphone()

Button = pygame.mixer.Sound('/home/pi/Downloads/button8.wav')

try:
print("A moment of silence, please...")
with m as source: r.adjust_for_ambient_noise(source)
print("Set minimum energy threshold to {}".format(r.energy_threshold))
while True:
print("Say something!")
with m as source: audio = r.listen(source)
print("Got it! Now to recognize it...")
try:
# recognize speech using Sphinx
value = r.recognize_sphinx(audio)
print("You said {}".format(value)) #uses unicode for strings and this is where I am stuck
pygame.mixer.Sound.play(Button)
pygame.mixer.music.stop()
except sr.UnknownValueError:
print("Oops! Didn't catch that")
except sr.RequestError as e:
print("Uh oh! Couldn't request results; {0}".format(e))
except KeyboardInterrupt:
pass

非常感谢您提供的任何帮助。请善待,因为我是初学者。

最佳答案

尝试将其与“播放按钮”进行比较:

# recognize speech using Sphinx
value = r.recognize_sphinx(audio)
print("You said {}".format(value))

if value.lower() == 'play button':
pygame.mixer.Sound.play(Button)
pygame.mixer.music.stop()

关于Python 3 和 Pocket Sphinx,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47490242/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com