Raspberry pi:从python代码生成并播放音调(使用sox)

时间:2018-02-13 15:16:50

标签: python tkinter raspberry-pi playback sox

我正在使用python 3构建一个使用Raspberry,TKinter和sox的简单GUI。 每次按下GUI中的按钮时,我都想播放动态生成的音调。这是代码:

from Tkinter import Tk, Label, Button
import os

class MyFirstGUI:
    def __init__(self, master):
        self.master = master
        master.title("Random Tone Generator")

        self.label = Label(master, text="Press Generate and enjoy")
        self.label.pack()

        self.generate_button = Button(master, text="Generate", command=self.generate)
        self.generate_button.pack()

        self.close_button = Button(master, text="Close", command=master.quit)
        self.close_button.pack()

    def generate(self):
        os.system('play -n -c1 synth 3 sine 500')

root = Tk()
my_gui = MyFirstGUI(root)
root.mainloop()

这是从终端到此脚本的调用

sudo python /home/pi/Desktop/soundtest.py

如果我尝试按下“生成”按钮

,我会得到错误
play FAIL formats: can't open output file `default': select_format error: Operation not permitted

如果我尝试相同的命令('play -n -c1 synth 3 sine 500'),它会按预期工作。

我现在搜索了几个小时,我尝试使用子进程解决了相同问题的解决方案,以及与播放文件相关的解决方案,而我需要在现场生成音调,因为将来它们将随机生成。

我的问题归结为: 1)为什么在终端中工作的命令在python脚本中不起作用 2)如何让它工作,以便我可以直接从脚本生成音调? 我读到了一些我无法找到的地方,可能需要在脚本调用期间指定音频驱动程序。但我不知道怎么做。

编辑:我安装了HiFiberry DAC + pro声卡,自动设置为默认声卡(而不是vc4-hdmi)

**** List of PLAYBACK Hardware Devices ****
card 0: vc4hdmi [vc4-hdmi], device 0: MAI PCM vc4-hdmi-hifi-0 []
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: sndrpihifiberry [snd_rpi_hifiberry_dacplus], device 0: HiFiBerry DAC+ Pro HiFi pcm512x-hifi-0 []
  Subdevices: 1/1
  Subdevice #0: subdevice #0

由于 蚂蚁

1 个答案:

答案 0 :(得分:2)

找到了解决方案。

我需要指定要使用的声卡,我是通过更改行

来实现的
os.system('play -n -c1 synth 3 sine 500')

进入这个

os.system("AUDIODRIVER=alsa AUDIODEV=hw:1,0 play -n -c1 synth 3 sine 500")

其中 AUDIODEV = hw:1,0 是我的声卡的数量来自 aplay -l