音频音量不会改变

EC8*_*4B4 5 sound asus drivers 18.10

当音频电平按预期为 0 时,没有音频。可以听到,但是当我增加音量时,音量总是尽可能大。

更新:Ubuntu 18.10。

笔记本电脑:华硕 ux550vd。

扬声器笔记本电脑的内置音频。

音频设备:英特尔公司 CM238 高清音频控制器(版本 31)。

00:1f.3 Audio device: Intel Corporation CM238 HD Audio Controller (rev 31)
Subsystem: ASUSTeK Computer Inc. CM238 HD Audio Controller
Flags: bus master, fast devsel, latency 32, IRQ 130
Memory at ed328000 (64-bit, non-prefetchable) [size=16K]
Memory at ed300000 (64-bit, non-prefetchable) [size=64K]
Capabilities: <access denied>
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
Run Code Online (Sandbox Code Playgroud)

Net*_*ear 3

编辑:pactl load-module module-alsa-sink control=PCM应该会导致pulseaudio看到一个新的输出设备来控制PCM音量。如果更改此设备可以正确控制音频输出音量,您可以添加load-module module-alsa-sink control=PCM一行/etc/pulse/default.pa

PCM(脉冲编码调制)发生在 ALSA 内核级别,负责将数字信号从软件采样并转换为从硬件(PCM 播放通道)中听到的模拟信号,以及从麦克风(PCM捕获)为其数字形式。

Linux 音频输出和音量控制提供了很多功能,但它也可能使思考变得更加复杂并且更难以排除故障。对于输出,流程或多或少是这样的:

START:Application audio you wish to hear produces digital audio data

  > Pulse app and libraries (user control with pavucontrol happens here and changes are then sent to the pulse engine server) 

     > Pulse engine server (the core of Pulseaudio package)  

         >  ALSA Kernel API (alsamixer control, PCM, MIDI and Sequencer API) 

              > ALSA kernel driver processes data to make it understandable to our hardware

END: Speaker output
Run Code Online (Sandbox Code Playgroud)

我认为pactl来自pulseaudio包应该让你开始并走上正确的轨道,请尝试

$pactl set-sink-volume $(pactl info | grep -i Sink | cut -d ':' -f2) 25%

并让我们知道音频音量是否设置为范围的 1/4,或再次跳至 100%。