|
I have been looking over different forums and found incomplete answers if it is possible to capture, on a host machine using Ubuntu, audio streaming from an external device threw blue-tooth. I read about modification to alsa configure file and found the following command using gstreamer :
gst-launch -v alsasrc device=bluetooth ! audioconvert ! audioresample ! alsasink
And with this lines added to alsa configure file :
pcm.bluetooth {
type bluetooth
device 00:11:22:33:44:55 #connects to specific device instead the default one
}
I can't get the "bluetooth" to set on alsasrc property to work.
Output :
ERROR: from element /GstPipeline:pipeline0/GstAlsaSrc:alsasrc0: Could not open audio device for recording.
All this is done on a host machine using Linux with gstreamer-0.10 installed.
Is this possible to achieve in this moment?
Thanks,
Cristian
|