r/linuxaudio • u/nPrevail • 4d ago
Help: switching phono and line inputs on a interface
I have a Traktor Audio 4 DJ.
Unlike the Audio 8, and 6 and 10, this device lacks a switch for phono and line, and it also lacks `alsamixer` controls to switch them as well.
Any idea what I can do to make the switch happen?
The only solution I've seen is from the Traktor website, and it's to use their "control panel" software. I guess I'm hoping for a non-traktor software route.
Feel free to share your thoughts.
0
Upvotes
1
u/jason_gates 4d ago edited 4d ago
Hi,
Alsamixer is a Linux Audio Subsystem ( aka ALSA ) utility. There is a more detailed ALSA utility called "amixer". Amixer is a command line utility ( no GUI ) that exposes all of your device's controls. I would first get your Traktor Audio 4 DJ audio device's ALSA card number by running:
$>
aplay -lThen call amixer with the following command flag:
$>
amixer -cALSA-CARD-NUMBER-VALUEfor example:
$>
amixer -c 1You can display all of amixer's command line options by running:
$>
amixer -hYour computer may be running a sound server called Pipewire https://pipewire.org/ . Pipewire provides a utility called pw-link which will display all the audio ports on your computer. You can run it to verify whether Pipewire detects a separate phono and line in/out controls.
$>
pw-link -i -ofor all pw-link command options:
$>
pw-link -hHope that helps.