我希望耳机左侧的音量为 100%,而不是 50/50。我该怎么做?
我的操作系统是 Debian Squeeze,我的笔记本电脑是 Thinkpad T61。
答案1
~/.asoundrc
假设您正在使用 alsa,您可以在(或/etc/asound.conf
)中按照以下步骤进行操作:
pcm.card0 {
type hw
card 0
}
pcm.!default {
type route
slave.pcm card0
slave.channels 2
ttable.0.0 0.5
ttable.1.0 0.5
ttable.0.1 0
ttable.1.1 0
}
我基于http://alsa.opensrc.org/Talk:.asoundrc#Converting_stereo_to_mono_sound,那里还有很多其他的例子。
答案2
做混合为你工作?