Hi, @petsam , thank you for your help!
After researching about how to use pacmd, I've found a workaround that worked for me.
In the case that others stumble across this particular thread with a similar issue, I will document my process.
First, I used pacmd list-sources
to list all of my input devices.
I found my microphone's name in the sources, and then used this command to create a remapped source that downmixes the left-channel (working left ear) of my microphone to mono.
pacmd load-module module-remap-source source_name=SamsonTechnologies_Samson_C01U master=alsa_input.usb-Samson_Technologies_Samson_C01U-00.analog-stereo master_channel_map=left channel_map=mono
If you use this command, make sure to rename the source_name
to a custom name of your choice, and the master
to the name of your microphone source's name in pacmd list-sources
.
Set the remapped device as default, and then test it out in OBS Studio or Audacity to make sure that your remapped source works properly. If it did, we can then go to /etc/pulse/default.pa
and then apply this on start-up.
load-module module-remap-source source_name=SamsonTechnologies_Samson_C01U master=alsa_input.usb-Samson_Technologies_Samson_C01U-00.analog-stereo master_channel_map=left channel_map=mono
I also included this line to rename my source to something more readable.
'update-source-proplist SamsonTechnologies_Samson_C01U device.description="Samson C01U Condenser Microphone" '
If you decide to use this command, replace SamsonTechnologies_Samson_C01U
with the name of your remapped source, and replace the contents of device.description
with the desired name.
Again, thank you for your help @petsam !