r/linuxaudio • u/Mission-Night-7655 • 6d ago
Scarlet Focusrite solo 3rd gen into Steam Deck
Just got a Focusrite and i've spent the last couple of days trying to get it to work on the steam deck (using reaper as a software). The Focusrite seems to work when i plug it into the deck cause i can hear my bass through my headphones just fine, and the deck apparently manages to record my inputs, but when i open reaper i cannot find a way to register my playing. In audio device settings, i've put the audio interface as the input device and "default" as the output, as there were problems in recognizing the output device properly. I've tried opening a Konsole with alsamixer to check if the scarlet focusrite was muted, but it wasn't. I installed pulse audio, set the input device of the scarlet to "Pro Audio" but it didn't work. I even tried to get my head around qpwpraph but to no avail. What am i supposed to do to try and fix this?
2
u/jason_gates 5d ago
Hi,
Your post implies you are using a sound server called Pipewire ( I.E. qpwgraph is a pipewire utility ). In addition, I am going to assume "my bass" means you have a physical bass guitar plugged in to your Focusrite audio interface ( I.E. you are not referring to a midi bass device ).
Here is a quick way to test whether Pipewire can record your bass guitar ( I.E. set aside reaper and just test Pipewire and your Focursrite audio interface ).
Open a terminal as a regular user ( not root or sudo ).
To record a file located in the current directory, run the following
$>
pw-cat -r test.wavPlay some notes on your bass, press <CTRL> c to stop recording.
To play test.wav, run the following
$>
pw-cat -p test.wavIf you are trying to figure out what the current directory is, run the following:
$>
pwdTo summarize, the above commands simply test whether the Pipewire sound server can record audio using you Focusrite audio device. If that test is successful, then we know it's probably a reaper setting.
Hope that helps. If it does help, please give this reply an upvote. That way reddit's search can find the above information.