Android 带蓝牙麦克风的语音识别器

Android Speech Recognizer with Bluetooth Microphone

我一直在编写一个使用蓝牙的聊天应用 headsets/earphones。 到目前为止,我已经能够通过蓝牙耳机中的麦克风录制音频文件,并且 我已经能够使用 Android 设备的内置麦克风,使用 RecogniserIntent 等

进行语音转文本。

但我找不到让 SpeechRecogniser 通过蓝牙收听的方法 mic.Is 甚至可以这样做,如果可以,怎么做?

当前设备:Samsung Galax

Android版本:4.4.2

编辑:我在我的平板电脑设置中发现了一些隐藏的语音识别器选项,其中之一是标记为 "use bluetooth microphone" 的复选框,但它似乎没有任何效果。

找到了我自己问题的答案,所以我将其发布以供其他人使用:

为了让语音识别与蓝牙麦克风一起工作,您首先需要将设备作为蓝牙耳机对象获取,然后对其调用 .startVoiceRecognition(),这会将模式设置为语音识别。

完成后,您需要调用 .stopVoiceRecognition()。

您将获得蓝牙耳机:

private void SetupBluetooth()
{
    btAdapter = BluetoothAdapter.getDefaultAdapter();

    pairedDevices = btAdapter.getBondedDevices();

    BluetoothProfile.ServiceListener mProfileListener = new BluetoothProfile.ServiceListener() {
        public void onServiceConnected(int profile, BluetoothProfile proxy)
        {
            if (profile == BluetoothProfile.HEADSET)
            {
                btHeadset = (BluetoothHeadset) proxy;
            }
        }
        public void onServiceDisconnected(int profile)
        {
            if (profile == BluetoothProfile.HEADSET) {
                btHeadset = null;
            }
        }
    };
    btAdapter.getProfileProxy(SpeechActivity.this, mProfileListener, BluetoothProfile.HEADSET);

}

然后你会调用 startVoiceRecognition() 并像这样发送你的语音识别意图:

private void startVoice()
{
    if(btAdapter.isEnabled())
    {
        for (BluetoothDevice tryDevice : pairedDevices)
        {
            //This loop tries to start VoiceRecognition mode on every paired device until it finds one that works(which will be the currently in use bluetooth headset)
            if (btHeadset.startVoiceRecognition(tryDevice))
            {
                break;
            }
        }
    }
    recogIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    recogIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);

    recog = SpeechRecognizer.createSpeechRecognizer(SpeechActivity.this);
    recog.setRecognitionListener(new RecognitionListener()
    {
       .........
    });

    recog.startListening(recogIntent);
}