Jabra 510 / 410 on a Pi 4 asound.conf

Hey,

is someone using a Jabra 510 or 410 on a Pi successfully?

Sadly I can’t get it running with my asound.conf.

Is someone willed to share his asound.conf?

Thanks in advance

Hello,
I am also interested because I was thinking of buying a jabra 510 with a link 370 usb adapter to have an audio input and output on my rhasspy installation…
Are you using the

  • jabra link 370 usb bluetooth adapter
  • or the standard bluetooth connection
  • or the usb cable directly?

I’ve connected it directly using the USB cable.

Have a look at Can't get microphone capture working, even though capture device is recognized

Very similar device but Ankor and maybe C64 will give you some tips also.

1 Like

Is the Jabra even detected? What do aplay -l and arecord -l (lowercase “L”) show?

Below is the asound.conf I use with my Anker S330.

pcm.!default {
    type asym
    playback.pcm "playback"
    capture.pcm "capture"
}

pcm.playback {
    type plug
    slave.pcm "ankerspeaker"
}

pcm.capture {
    type plug
    slave.pcm "ankermic"
}

pcm.ankerspeaker {
    type dmix
    slave.pcm "hw:CARD=S330,DEV=0"
}

pcm.ankermic {
    type hw
    card 1
}
1 Like