43

I'm currently running Ubuntu 9.04. I wanted to swap the stereo channels, but I couldn't find that option in the Volume Control Preferences.

Is there a way to do this without touching any configuration file? (I'm not allowed to log as root in this machine)

Auron
  • 1,047

5 Answers5

46

The PulseAudio way (tested on Ubuntu 10.04, should work on 9.04):

Copy /etc/pulse/default.pa to ~/.pulse/default.pa, and add the following two lines to the end:

load-module module-remap-sink sink_name=reverse-stereo master=0 channels=2 master_channel_map=front-right,front-left channel_map=front-left,front-right
set-default-sink reverse-stereo

Restart PulseAudio by running pactl exit at the command line.

Leave out the second line if you don't want to use the reversed stereo by default. You can switch between reversed and normal stereo output in the "Output" tab in Sound Preferences. If you do have root and want this system wide, you can just add the lines to /etc/pulse/default.pa instead of making a user-specific configuration.

This configuration makes a few basic assumptions: that the card you're reversing the channels of is card 0; that you only have to deal with 2 channels; and that those channels are called front-left and front-right.

If you have a videocard with HDMI out, it is likely the analog out of your motherboard will be card 1, not 0; so master=1. (Front Panel headphones are likely on this analog channel)

For more information, see the PulseAudio documentation for module-remap-sink.

Brian Gruber
  • 576
  • 5
  • 4
21

Essentially the same approach as Brian's above, but without touching any configuration file:

pactl load-module module-remap-sink \
    sink_name=reverse-stereo \
    master=0 \
    channels=2 \
    master_channel_map=front-right,front-left \
    channel_map=front-left,front-right

This will create on the fly an additional PA sink with reversed channels. (It will disappear after pulseaudio restart). To switch to it:

pactl set-default-sink reverse-stereo

— OR, you can also switch manually via the sound control panel:

pulseaudio volume control window

Off course it's possible to switch back and forth, e.g. when experimenting.


This way is better if you want to try something out quickly rather than to save the setup permanently.

ulidtko
  • 3,086
7

If you're using ALSA, Add this to your ~/.asoundrc file:

pcm.swapped {
    type         route
    slave.pcm    "cards.pcm.default"
    ttable.0.1   1
    ttable.1.0   1
}

pcm.default      pcm.swapped

Via ALSA FAQ

1

For a solution using Pipewire, "Easy Effects" application can be used. First install "Easy Effects" from Flatpak. Then open the application. In the bottom panel, select "Effects", then "Add effect" from the left panel and select Stereo tools to add. Here you can select this tool for "LR -> RL Stereo flip channels". For the sound output, select "Easy Effects sink".

Installing the Easy Effect application

Easy Effect application

0

I have the same problem here and the Brian answer works fine on some devices. If you want to invert the stereos of bluetooth devices every time you restart PulseAudio the sound device conected by bluetooth will disconect and after reconecting there is no remaped audio output. Probably a way to reload conected devies without restarting PulseAudio solve this issue.