提问人:Richard Pope 提问时间:11/10/2023 更新时间:11/10/2023 访问量:10
Raspberry Pi 3B+ 服务在没有音频的情况下工作
Raspberry Pi 3B+ Service working without Audio
问:
我创建了一个 python 程序,该程序旨在在需要使用扬声器和麦克风的无头树莓派上运行。我已将其设置为作为服务启动,它显示该服务处于活动状态,没有错误,但是当它在启动时启动时,程序没有音频,但是当它在IDE中作为常规python程序运行时,它可以工作。
我在 /etc/systemd/system/deskBuddy.system 下的服务如下所示:
[Unit]
Description = Launches my python program
After = network.target sound.target
[Service]
ExecStart = /usr/bin/python3 /home/rdp/deskBuddy.py
WorkingDirectory = /home/rdp
StandardOutput = inherit
StandardError = inherit
Restart = always
User = rdp
[Install]
WantedBy = multi-user.target
我的 Python 文件运行 openai、pyttsx3、speech_recognition 和 sounddevice
我试图在rc.local中运行它,但这也不起作用
答: 暂无答案
评论