中央扬声器播放低音炮声音,低音炮播放中央扬声器声音

中央扬声器播放低音炮声音,低音炮播放中央扬声器声音

我有一张 C-Media 声卡 - CM8738 和 5.1 扬声器。

一切似乎都运行良好,但有一个问题——两个扬声器混合了——低音炮是中央扬声器,而中央扬声器是 Ubuntu 的低音炮。

答案1

1-在终端中运行 gksu gedit /usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf 这是频道图所在的文件,在提示时输入密码,文件将打开。

2-您正在寻找如下所示的代码-

[Mapping analog-surround-51]
 device-strings = surround51:%f
 channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
 paths-output = analog-output analog-output-speaker analog-output-desktop-speaker analog-output-lfe-on-mono
 priority = 8
 direction = output

3- 可能不完全相同,但我们只想将通道映射顺序
从 -更改
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
为 -
channel-map = front-left,front-right,rear-left,rear-right,lfe,front-center

注意左低音和中前低音的顺序,左低音是低音炮,中前低音是中置音箱,如果显示的是另一种配置,只需交换lfe和的位置即可。front-center

来源:http://ubuntuforums.org/archive/index.php/t-1484966.html

请让我知道您的版本如何运作。

相关内容