JACK音频连接套件jackd守护程序无法在RaspberryPi上启动

时间:2012-08-27 15:30:53

标签: linux audio raspberry-pi jack

我正在运行Raspberry Pi图像2012-07-15-wheezy-raspbian.zip,我安装了一个CMedia 108 USB音频适配器。

尝试使用内置音频启动jackd

jackd -r -d alsa -d hw:0

无法启动

JACK compiled with System V SHM support.
loading driver ..
creating alsa driver ... hw:0|hw:0|1024|2|48000|0|0|nomon|swmeter|-|32bit
control device hw:0
ALSA: Cannot open PCM device alsa_pcm for capture. Falling back to playback-only mode
configuring for 48000Hz, period = 1024 frames (21.3 ms), buffer = 2 periods
ALSA: mmap-based access is not possible for the playback stream of this audio interface
ALSA: cannot configure playback channel
cannot load driver module alsa 

使用USB音频

jackd -r -d alsa -d hw:1  

立即退出,而不是在后台运行。

JACK compiled with System V SHM support. 
loading driver .. 
creating alsa driver ... hw:1|hw:1|1024|2|48000|0|0|nomon|swmeter|-|32bit 
control device hw:1 
configuring for 48000Hz, period = 1024 frames (21.3 ms), buffer = 2 periods 
ALSA: final selected sample format for capture: 16bit little-endian 
ALSA: use 2 periods for capture 
ALSA: final selected sample format for playback: 16bit little-endian 
ALSA: use 2 periods for playback  

有什么想法吗?

3 个答案:

答案 0 :(得分:8)

板载声卡不能直接与JACK一起使用,但是像C-Media这样的USB声卡应该可以工作。你需要一个JACK的补丁版本:http://wiki.linuxaudio.org/wiki/raspberrypi 官方Raspbian存储库中的JACK包不起作用,因为它们使用打包的结构,这将在启动JACK时产生总线错误。

从存储库安装JACK后,尝试启动JACK,如下所示:

jackd -P84 -p32 -t2000 -d alsa -dhw:Device -p 128 -n 3 -r 48000 -s

这将运行JACK,系统延迟低于10毫秒。对我来说,这适用于我的2美元C-Media声卡。

答案 1 :(得分:1)

实际上rpi不支持插孔,因为驱动程序不够好

问题是rpi的alsa驱动程序缺少jack所需的功能(mmap支持)。

答案 2 :(得分:0)

现在解决了这个问题。 解决方案是在您的/boot/config.txt中添加“dtoverlay = i2s-mmap” 另外请确保使用jackd2而不是jackd1,因为后者仍然存在内存对齐问题,导致BUS ERROR。

这是解决方案的摘要,from here