androidpythonqpythonqpython3

Offline Speech Recognition in qpython3


I have been trying to make a qpython program that uses sl4a.Android.recognizeSpeech function. The functionality works fine online.

In my phone settings, I turned on and downloaded offline speech recognition and google now works fine offline, but the python speech does not work at all, asking me to try again every single time.

Sample Code:

import sl4a 
import time

droid = sl4a.Android()

def speak(text):
    droid.ttsSpeak(text)
    while droid.ttsIsSpeaking()[1] == True:
        time.sleep(1)

def listen():
    return droid.recognizeSpeech('Speak Now',None,None)

def login():
    speak('Passphrase, please')
    try:
        phrase = listen().result.lower()
    except:
        phrase = droid.dialogGetPassword('Passphrase').result
    print(phrase)
    if phrase == 'pork chops':
        speak('Welcome')
    else:
        speak('Access Denied')
        exit(0)

login()

Solution

  • droid.recognizeSpeech("foo", None, None)
    

    returns an Array with the recognized Speech in Index number 1. So if you want to access it, you have to type

    return droid.recognizeSpeech("foo", None, None)[1]