我已经有很多问题要修复我的音响系统了。我目前正在运行一个Ubuntu20.04,安装了脉冲音频、脉冲效果和alsamixer。
我在我的"default.pa“load-module module-detect,load-module module-combine channels=6 channel_map=front-left,front-right,rear-left,rear-right,front-center,lfe和daemon.conf中添加了
; enable-lfe-remixing = yes -- because this I was told is deprecated
remixing-produce-lfe = yes
remixing-consume-lfe = yes作为硬件,我有一个声音Blaster X菲钛系列设置为“模拟环绕声5.1”。Gnome-声音设置做他们喜欢做的,一旦我触摸他们,他们破坏了系统的声音设置。我在Alsamixer打开了我的中心/LFE,现在一切都会产生某种声音。
声音仍然是可怕的,特别是在PulseEffects中启用了低音增强器,因为我的卫星试图产生低音声音。
在正确读取文件时,PulseEffects似乎也被禁用了,因为它显示在“/etc/脉冲/daemon.conf”中:
default-channel-map = front-left,front-left-of-center,front-center,front-right,front-right-of-center,rear-center文件中不存在这一行。因此,我显式地添加到这个文件和“~/..config/脉冲/”中的文件中:
default-sample-channels = 6
default-channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe尽管如此,在pulseaudio -k和系统重新启动(并重新检查文件内容)之后,脉冲效应仍然无法正确读取文件。(或那里发生的一切)
有没有办法只让低音炮产生低音,或者可能只让低音炮受到低音增强器的影响,因为我不确定当我从卫星上完全移除低频时,声音会是怎样的?(不知道低音分裂到卫星的位置/如何设置,也不知道如何使其失效)
发布于 2020-11-30 21:20:21
lfe-crossover-freq=在pulse-daemon.conf中有一个选项。
以下是man pulse-daemon.conf对此的看法:
lfe-crossover-freq= The crossover frequency (in Hz) for the LFE filter. Set it to 0 to
disable the LFE filter. Defaults to 0.我建议您不要更改/etc/下的设置,而是将这些文件复制到用户的主文件夹中。(如果您已经更改了它们,请从原始文件的备份中复制):
cp /etc/pulse/daemon.conf ~/.config/pulse/daemon.conf
cp /etc/pulse/default.pa ~/.config/pulse/default.pa向~/.config/pulse/default.pa添加以下行:
load-module module-combine channels=6 channel_map=front-left,front-right,rear-left,rear-right,front-center,lfe在~/.config/pulse/daemon.conf中添加(或取消注释)以下行:
remixing-produce-lfe = yes
remixing-consume-lfe = yes
lfe-crossover-freq = value用期望的交叉频率(以赫兹为单位)替换value。低于此值的频率将被发送到LFE信道。
用pulseaudio -k重新启动脉冲。
https://askubuntu.com/questions/1280040
复制相似问题