Is it possible to make vlc play audio to only one of the speakers left/right from commandline ?
play audio to only one speaker left/right from commandline using libvlc
If VLC Audio channels is not performing well the most you can do is open a ticket in VLC bug system.
If you can't wait until the issue is fixed just redirect the audio output to STDOUT and use a tool like SOX to do the work for you.
Selecting a Particular Channel with sox:
sox stereo.wav -c 1 mono.wav avg -l
of course sox can work on streams and it's not restricted to files.
BTW, sox comes with play and record utilities that can do the actual playback. see the examples here
streaming to stdout on windows: forum.videolan.org/viewtopic.php?f=4&t=57940 –
Deborahdeborath
Have you looked into mplayer? It can easily do this via "-af channels=...".
© 2022 - 2024 — McMap. All rights reserved.
Audio -> Audio Channels
menu option while playing the media. I am not sure if you can specifically control either L or R audio channel via VLC GUI interface. – MargaretmargaretaSound Setting
to adjust left/right speakers calledBalance
. (I still wish VLC did that natively to be sure it's working, but the System should override VLC correct?) – Sheikh