LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Desktop (https://www.linuxquestions.org/questions/linux-desktop-74/)
-   -   Input but not output in pulseaudio (https://www.linuxquestions.org/questions/linux-desktop-74/input-but-not-output-in-pulseaudio-4175736452/)

black-clover 04-26-2024 11:25 AM

Input but not output in pulseaudio
 
Hello everybody,

I'm trying to figure out a Pulseaudio issue.
When I connect my digital piano to the USB port, I can see the input sound in Pulseaudio, but I get no output.
I tried all the output pull down menus and all the possible configurations and got nothing.
If I record (using arecord) I can see the signal in the record page, and the recording is fine, but I still cannot hear any output.
If I play back the recording, the output is fine.

Any tips on how to figure this out?

ferrari 04-26-2024 05:20 PM

Start by examining the available sources and sinks

Code:

pactl list sinks
Code:

pactl list sources
You'll need to load the looback module first
Code:

pactl load-module module-loopback latency_msec=1
then use pavucontrol to select the desired source (Recording tab) and sink (Playback tab)

This can also be done via the pactl command itself eg
Code:

pactl load-module module-loopback latency_msec=1 source=1 sink=0
A Similar thread which may be of value
https://askubuntu.com/questions/4034...nal-sound-card

BTW, you can make it permanent by adding the required user configuration in ~/.pulse/default.pa

For example
https://unix.stackexchange.com/quest...-output-volume

black-clover 04-26-2024 07:19 PM

Thank you so much, problem solved!

ferrari 04-26-2024 08:32 PM

Glad to have been of guidance!


All times are GMT -5. The time now is 02:33 PM.