当通过 Pi 上的 systemd 启动时,Pygame 音频充满了爆裂声/噼啪声

当通过 Pi 上的 systemd 启动时,Pygame 音频充满了爆裂声/噼啪声

我正在尝试设置一个播放音频的 Python 进程,以便使用 systemd 在启动时自动启动,但是当我这样做时,音频充满了流行音乐,即使当我自己在命令行中运行它时也没有问题。正如您在下面的文件中看到的,.service我尝试以我能想到的各种方式最大化进程优先级。有谁知道出了什么问题吗?

脚本在这里:https://github.com/UndarkAido/superhet(您必须填充该music目录并secrets.py自行运行它。genBreaks.py填充该breaks目录。)

超级服务:

[Unit]
 Description=Superhet radio
 After=multi-user.target sound.target

 [Service]
 Type=simple
 CPUSchedulingPolicy=fifo
 CPUSchedulingPriority=99
 IOSchedulingClass=realtime
 IOSchedulingPriority=0
 Nice=-20
 User=aidan
 Group=aidan
 WorkingDirectory=/home/-user-/Source/superhet
 ExecStart=/home/-user-/Source/superhet/venv/bin/python main.py

 [Install]
 WantedBy=multi-user.target

系统信息:

  `.::///+:/-.        --///+//-:``    -user-@superhet
 `+oooooooooooo:   `+oooooooooooo:    --------------
  /oooo++//ooooo:  ooooo+//+ooooo.    OS: Raspbian GNU/Linux 10 (buster) armv7l
  `+ooooooo:-:oo-  +o+::/ooooooo:     Host: Raspberry Pi 4 Model B Rev 1.1
   `:oooooooo+``    `.oooooooo+-      Kernel: 5.10.63-v7l+
     `:++ooo/.        :+ooo+/.`       Uptime: 20 mins
        ...`  `.----.` ``..           Packages: 1485 (dpkg)
     .::::-``:::::::::.`-:::-`        Shell: bash 5.0.3
    -:::-`   .:::::::-`  `-:::-       Terminal: /dev/pts/0
   `::.  `.--.`  `` `.---.``.::`      CPU: BCM2711 (4) @ 1.500GHz
       .::::::::`  -::::::::` `       Memory: 89MiB / 1872MiB
 .::` .:::::::::- `::::::::::``::.
-:::` ::::::::::.  ::::::::::.`:::-
::::  -::::::::.   `-::::::::  ::::
-::-   .-:::-.``....``.-::-.   -::-
 .. ``       .::::::::.     `..`..
   -:::-`   -::::::::::`  .:::::`
   :::::::` -::::::::::` :::::::.
   .:::::::  -::::::::. ::::::::
    `-:::::`   ..--.`   ::::::.
      `...`  `...--..`  `...`
            .::::::::::
             `.-::::-`

编辑:也定期systemctl status superhet.service显示superhet python[1040]: ALSA lib pcm.c:8424:(snd_pcm_recover) underrun occurred

答案1

添加Environment=XDG_RUNTIME_DIR=/run/user/1000到服务文件允许 PyGame 连接到 PulseAudio

https://stackoverflow.com/q/49059610/1526048

相关内容