I'm currently developing an application that works with live music captured via microphone. That makes it pretty hard to test though, what with me working in a shared office and all. I'm currently testing it by loading external MP3 files from within the app, but that's far from optimal.
What I'm trying to do is to somehow reroute the sound coming from the speakers as if it came from the microphone. I've read about the Stereo Mix option that comes with some sound card drivers on Windows, but I'm using Ubuntu 10.10.
PulseAudio looks promising, and I found a guide that shows how to achieve something similar, but it only deals with recording the sounds in Audacity and so uses some options specific to Audacity.
Any help would be greatly appreciated!
Andrey
Update: I've been playing around with pacat and trying to make a loop as described in this question. However I've been struggling to get the devices paired up correctly. The devices listed in paman are:
Sinks
- alsa_output.pci-0000_00_1b.0.analog-stereo
Sources
- alsa_output.pci-0000_00_1b.0.analog-stereo.monitor
- alsa_input.pci-0000_00_1b.0.analog-stereo
It's the first time I've had to deal with audio devices so I'm not completely sure what I'm doing. The best result I got was from
pacat -r -d alsa_output.pci-0000_00_1b.0.analog-stereo.monitor | pacat -p -d alsa_output.pci-0000_00_1b.0.analog-stereo
which made the mp3 track I was playing in the background layer over itself continuously with a second's delay, which made for a cool if slightly disturbing effect.