Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以让 vlc 从命令行仅向左/右其中一个扬声器播放音频?
如果 VLC 音频通道表现不佳,您最多可以在 VLC 错误系统中打开一张票。
如果您不能等到问题得到解决,只需将音频输出重定向到 STDOUT 并使用SOX等工具为您完成工作。
使用 sox 选择特定频道:
sox stereo.wav -c 1 mono.wav avg -l
当然 sox 可以在流上工作,并且不限于文件。
顺便说一句,sox 带有可以进行实际播放的播放和录制实用程序。请参阅此处的示例
你看过mplayer吗?它可以通过“-af channels=...”轻松做到这一点。