Why SFSpeechRecognizer doesn't working in ipad

219 Views Asked by At

SFSpeechRecognizer is working well in IOS But it doesn't available in IPAD. I don't know how to fix it. Please give me a solution.

func recordAndRecognizeSpeech() {
        
        let node = audioEngine.inputNode
        let recordingFormat = node.outputFormat(forBus: 0)
        node.installTap(onBus: 0, bufferSize: 0, format: recordingFormat) { buffer, _ in
            self.request.append(buffer)
        }
        audioEngine.prepare()
        do {
            try audioEngine.start()
        } catch {
            return print(error)
        }
        guard let myRecognizer = SFSpeechRecognizer() else {
            // A recognizer is not supported for the current locale
            return
        }
        if !myRecognizer.isAvailable {
            print("Speech recognition not available")
            return
        }
        isFinal = false

        recognitionTask = speechRecognizer?.recognitionTask(with: request, resultHandler:  { result, error in
            if let result = result {
                self.recognizedSpeechTextView.text = result.bestTranscription.formattedString
                self.qnaTextField.text = result.bestTranscription.formattedString
                self.textFieldDidChange(self.qnaTextField)

            } else if let error = error {
                print(error)
            }
            
            if !self.isFinal {
                self.startSpeechTimer()
            }
        })
    }

in iPad call function if !myRecognizer.isAvailable { print("Speech recognition not available") return }

1

There are 1 best solutions below

0
On

At least two possible reasons SFSpeechRecognizer.isAvailable might return false exist: