我注意到某些视频文件存在问题,其中语音音量分量太低。我用谷歌搜索了一下,似乎问题在于它试图在立体声上播放环绕声扬声器,它无法将所有内容融合在一起。如果我在 mplayer 中播放相同的视频,一切正常。
其他人也有同样的问题吗?有人知道怎么修这个东西吗?我尝试更改 vlc 音频设置中的输出模块,但无论我选择什么,问题仍然存在。谢谢。
我在 Arch-Linux (KDE 4.7.2) 上使用的 VLC 版本是 1.1.12。
如果您需要任何其他信息,我会提供。
答案1
缩混/从 5.1 调整为“真实”2.1
我在我的 Arch Linux 机器上使用 ALSA 和 Pulse Audio。
您想要控制缩混到 2.0 的方式,因此您将在中定义一个自定义声音设备/etc/asound.conf
您可以使用此输出配置:
(将自定义函数添加到文件中/etc/asound.conf
)
pcm.51to20
{
type route
slave.pcm surround51
slave.channels 6
# Front and rear, at 33% of original signal strength
ttable.0.0 0.33
ttable.1.1 0.33
ttable.2.0 0.33
ttable.3.1 0.33
# Center channel routing (routed to front-left and front-right),
# 6dB gaindrop (gain half of main channels) per channel
ttable.4.0 0.16
ttable.4.1 0.16
# LFE channel routing (routed to front-left and front-right),
# 6dB gaindrop (gain half of main channels) per channel
ttable.5.0 0.16
ttable.5.1 0.16
}
然后在VLC中
转到音频首选项
工具 -> 首选项 -> 音频
设置Outputmodel
Alsa audio output
和
设置Device
Default ALSA Output (currently PulseAudio Sound Server)
保存并重新启动VLC