Questions tagged [nsspeechrecognizer]

Speech recognition framework for OSX.

Speech recognition framework for OSX.

5 questions
9
votes
5 answers

(Android Studio Speech Recognizer) I'm getting error 9 (insufficient Privileges) even though I have given it RECORD_AUDIO and INTERNET

package blessupboys.speechtest; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.net.ConnectivityManager; import android.os.Bundle; import android.view.View; import…
1
vote
1 answer

NSSpeechRecognition doesn't respond for macOS Speech Recognition

I'm a noob here so I might be missing something basic. Find my code below, I can't seem to figure out why the speech recognition function is not being called. The microphone is active and the dictionary is populated but the recognition is not taking…
1
vote
0 answers

Use GPU for speech NSSpeechSynthesis and NSSpeechRecogniers on OS X

I just did an interesting test of running a speech recogniser service and using NSSpeechSynthesis to echo what I said using NSSpeechSynthesizer. However, NSSpeechSynthesizer is notorious for being slow and unresponsive, and I wanted to know if…
triple7
  • 542
  • 3
  • 17
1
vote
1 answer

SpeechRecognizer | What happend (nothing happend) after say nothing?

I dont find an answer on google or i dont get the right words for it. So the SpeechRecognizer works fine. But when i hear the beep (i use it without the google dialog) and i say nothing for about 3 seconds or more, its like the recognizer do…
Phil
  • 304
  • 1
  • 5
  • 12
0
votes
1 answer

OSX Sierra Nsspeechrecognizer issues

Rather than bore you with a bunch of code I will summize it below. In app delegate I create an nsspeechrecognizer set its delegate, add commands, and then start listening. Speech recognizer recognizes the command the first time and continues as…