由于某种原因,当我尝试测试实用程序时,我的低音炮不会给我任何输出。
我尝试过不同的配置,但都没有奏效。这是 的当前状态/etc/pulse/daemon.conf
。
; daemonize = no
; fail = yes
; allow-module-loading = yes
; allow-exit = yes
; use-pid-file = yes
; system-instance = no
; local-server-type = user
; enable-shm = yes
; enable-memfd = yes
; shm-size-bytes = 0 # setting this 0 will use the system-default, usually 64 MiB
; lock-memory = no
; cpu-limit = no
; high-priority = yes
; nice-level = -11
; realtime-scheduling = yes
; realtime-priority = 5
; exit-idle-time = 20
; scache-idle-time = 20
; dl-search-path = (depends on architecture)
; load-default-script-file = yes
; default-script-file = /etc/pulse/default.pa
; log-target = auto
; log-level = notice
; log-meta = no
; log-time = no
; log-backtrace = 0
; resample-method = speex-float-1
; avoid-resampling = false
; enable-remixing = yes
; remixing-use-all-sink-channels = yes
remixing-produce-lfe = yes
remixing-consume-lfe = yes
lfe-crossover-freq = 80
; flat-volumes = no
; rescue-streams = yes
; rlimit-fsize = -1
; rlimit-data = -1
; rlimit-stack = -1
; rlimit-core = -1
; rlimit-as = -1
; rlimit-rss = -1
; rlimit-nproc = -1
; rlimit-nofile = 256
; rlimit-memlock = -1
; rlimit-locks = -1
; rlimit-sigpending = -1
; rlimit-msgqueue = -1
; rlimit-nice = 31
; rlimit-rtprio = 9
; rlimit-rttime = 200000
; default-sample-format = s16le
; default-sample-rate = 44100
; alternate-sample-rate = 48000
default-sample-channels = 3
default-channel-map = front-left,front-right,lfe
; default-fragments = 4
; default-fragment-size-msec = 25
; enable-deferred-volume = yes
deferred-volume-safety-margin-usec = 1
; deferred-volume-extra-delay-usec = 0
当然,我还确保音量已调高。
我能做些什么?
更新
该模型为:
带低音炮的 Logitech Z333 2.1 扬声器系统深沉的低音,80 瓦峰值功率,3.5 毫米和 RCA 输入
2 个扬声器直接连接到低音炮,低音炮直接连接到“Line Out”连接器。
答案1
好的,我想我明白了这个问题。3.5 毫米“耳机插孔”只能传输 2 个未压缩的通道(立体声)。一对红色和白色的 RCA 插头也是如此。
3.5mm 和 RCA 插头可以传输 DTS 和 Dolby Digital 等压缩/编码流,只要源端可以编码并且目标端可以解码这些信号,就可以提供更多通道。接收器、电视、DVD 播放器等设备通常都是这样,但扬声器本身很少解码这些流。
相反,您的扬声器可能从 L 和 R 通道中的一个或两个中获取低音炮通道。同时,您的 pulseaudio 配置实际上指定了一个专用的 LFE 通道,其交叉频率为 80Hz。这意味着低于 80Hz 的任何内容都会发送到专用的 LFE 通道,而高于 80Hz 的所有内容都会发送到相应的 L 或 R 通道。
由于实际上没有专用的 LFE 通道,因此连接只会沿着 L&R 通道传输,根据您的配置,这些通道仅包含 80Hz 以上的频率。80Hz 以下的所有内容都不会发送到您的扬声器。所有较低频率的声音都会丢失,您的低音炮实际上没有得到使用。
您应该能够通过更改配置以使用 2 个通道(而不是 2.1 个通道)来解决这个问题。如果您的特定扬声器配置设计为让低音炮从 L&R 获得其通道(我怀疑是这样),这将使您的特定扬声器配置能够正常工作。
首先,备份您的配置,以防您需要调整它:
sudo cp /etc/pulse/daemon.conf /etc/pulse/daemon.conf.bak
现在编辑文件:
sudo nano /etc/pulse/daemon.conf
注释掉以下几行:
; remixing-produce-lfe = yes
; remixing-consume-lfe = yes
; lfe-crossover-freq = 80
并更改以下几行:
default-sample-channels = 2
default-channel-map = front-left,front-right
保存Ctrl+O并退出Ctrl+X
然后使用以下命令重新启动脉冲:
pulseaudio -k