Mopidy output to bluetooth speakers and audio out

Hi, @fmarzocca I tried to follow the instructions but I am not able to make it work properly.
I have a Mopidy as a service, latest version in rpi. my audio works (with the jack) when I set output = alsasink instead of the default autoaudiosink. My bluetooth is paired and it works when used with youtube.

my .asoundrc looks like this

pcm.!default {
type asym
playback.pcm {
type plug
slave.pcm “output”
}
capture.pcm {
type plug
slave.pcm “input”
}
}

pcm.output {
type bluealsa
device “B9:12:32:79:B0:A2”
profile “a2dp”
}

however that does not work when testing separately
aplay -D output /usr/share/sounds/alsa/Noise.wav
Playing WAVE ‘/usr/share/sounds/alsa/Noise.wav’ : Signed 16 bit Little Endian, Rate 48000 Hz, Mono
aplay: set_params:1345: Channels count non available

ctl.!default {
type bluealsa
}

and I can’t make gst-launch-1.0 to play bluetooth following your command.

however I do get the test tone in bluetooth by testing with
gst-launch-1.0 audiotestsrc ! audioconvert ! audioresample ! alsasink

any help you can give me is appreciated…
thanks