You are not logged in.

#1 2020-08-21 15:42:49

ThinkPad
Member
Registered: 2019-01-29
Posts: 125

[SOLVED] Bluetooth headset microphone not detected

PulseAudio does not detect my bluetooth headset microphone.

Following PulseAudio/Troubleshooting arecord does not list any other microphone when bluetooth headset is connected.

arecord -l
----
**** List of CAPTURE Hardware Devices ****
card 0: PCH [HDA Intel PCH], device 0: ALC257 Analog [ALC257 Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

I see no mention of microphone in the Bluetooth wiki nor the Bluetooth Headset wiki.

Last edited by ThinkPad (2021-02-03 03:52:43)

Offline

#2 2020-10-18 19:05:29

millus
Member
Registered: 2019-07-21
Posts: 193

Re: [SOLVED] Bluetooth headset microphone not detected

I have the same problem. Works fine on my mobile phone but not on Archlinux laptop. I'm using Sony WI-1000X.

Offline

#3 2020-10-18 19:14:53

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,427

Re: [SOLVED] Bluetooth headset microphone not detected

arecord is not supposed to show you anything it will  be a pulse device, the default will generally be the microphone-less but higher quality a2dp protocol. You should be able to switch that under the Configuration tab in pavucontrol (or similar facilities of whatever mixer) in doubt post

pacmd list-cards
pacmd list-sources

Online

#4 2021-02-03 03:48:05

ThinkPad
Member
Registered: 2019-01-29
Posts: 125

Re: [SOLVED] Bluetooth headset microphone not detected

pavucontrol worked and led me to the command line solution.

1. List cards to find the card name and available profiles

pacmd list-cards

2. Enable the mic by selecting the HSP/HFP profile

pacmd set-card-profile <card-name> headset_head_unit

3. Alias

earmic()
{
    if [ "$1" = "off" ]; then
        profile="a2dp_sink"a
    else
        profile="headset_head_unit"
    fi

    pacmd set-card-profile <card-name> $profile
}

Marking as solved. Thanks V1del!

Last edited by ThinkPad (2021-08-02 19:26:45)

Offline

#5 2021-02-03 06:23:41

ugjka
Member
From: Latvia
Registered: 2014-04-01
Posts: 1,794
Website

Re: [SOLVED] Bluetooth headset microphone not detected

https://www.freedesktop.org/wiki/Softwa … Bluetooth/

The "auto_switch" option of module-bluetooth-policy got a new mode: mode "2" can be used to enable automatic profile switching from A2DP to HSP when a recording stream appears without any role set.


https://ugjka.net
paru > yay | webcord > discord
pacman -S spotify-launcher
mount /dev/disk/by-...

Offline

#6 2021-03-22 18:11:14

TAYEF
Member
Registered: 2021-03-22
Posts: 1

Re: [SOLVED] Bluetooth headset microphone not detected

How have you got this solved?

It's better if you explain it step by step

Last edited by TAYEF (2021-03-22 18:11:37)

Offline

Board footer

Powered by FluxBB