How to send audio from EXT port inputs to speakers?


peca

Active Member
Joined
Jan 10, 2008
Messages
895
Location
Jičín city; CZ
Website
Visit site
Does anybody know how to send audio from EXT port inputs to speakers? I'm pretty Linux lame but I think that there should be some nice "command" then redirect it simple. Maybe it needs type and run some short script. Can anybody help me please?


---


edit: Damn! Mistype in thread header - "Fro" should be "For" :)
 
Last edited by a moderator:
Does anybody know how to send audio from EXT port inputs to speakers? I'm pretty Linux lame but I think that there should be some nice "command" then redirect it simple. Maybe it needs type and run some short script. Can anybody help me please?
This is a closely-related question (although it asks about mic input instead of EXT port input) - I would have said



Code:
cat /dev/dsp > /dev/dsp
might work, but apparently not in that case (might still be worth a try).
 
Last edited by a moderator:
The method we used for testing was:



Code:
arecord -f cd -D hw:0,1 | aplay


But you have to select correct input sources first in alsamixer.
 
Last edited by a moderator:
Back
Top