是否可以在没有任何图形环境的情况下在运行 Arch Linux 的 Raspberry Pi 3 Model B 中运行pulseaudio?

是否可以在没有任何图形环境的情况下在运行 Arch Linux 的 Raspberry Pi 3 Model B 中运行pulseaudio?

我有一个运行 Arch Linux ARM 的 Rapberry Pi,没有任何图形环境。我希望它每天早上播放一首歌。

我安装了pulseaudio。

但是当我使用paplay时,出现错误:

paplay test.mp3
Failed to open audio file.

测试文件为:

file test.mp3
test.mp3: MPEG ADTS, layer III, v1, 128 kbps, 44.1 kHz, JntStereo

我有以下条目/boot/config.txt

# See /boot/overlays/README for all available options

gpu_mem=0
initramfs initramfs-linux.img followkernel

hdmi_force_hotplug=1
hdmi_drive=2

dtparam=random=off
max_usb_current=1
dtparam=audio=on

我可以在没有任何图形环境的情况下播放音频吗?

答案1

papplay 不支持 mp3,请使用 ffplay 代替。 (或者先转换为flac)

...我不会添加对 MPEG Layer 3(通常称为 MP3)的支持...

http://www.mega-nerd.com/libsndfile/

papplay ...理解 libsndfile 支持的所有音频文件格式

https://linux.die.net/man/1/paplay

相关内容