Questions tagged [speechkit]

This tag refer to SpeechKit framework from Nuance Communications

The SpeechKit framework provides the classes necessary to perform network-based speech recognition and text-to-speech synthesis. This framework provides a simple, high-level speech service API that automatically performs all the tasks necessary for speech recognition or synthesis, including audio recording, audio playback, and network connection management.

This sdk is well documented here.

15 questions
11
votes
2 answers

Continuous listen the user voice and detect end of speech silence in SpeechKit framework

I have working an application where we need to open certain screen based on voice command like if user says "Open Setting" then it should open the setting screen, so far that I have used the SpeechKit framework but I am not able to detect the end of…
Ramkrishna Sharma
  • 6,961
  • 3
  • 42
  • 51
4
votes
2 answers

Is SpeechKit framework supported in watchOS 3?

I tried to import the SpeechKit framework for watchOS and received an error. Is there a way to use it with watch? I am getting an error when I import the Speechkit Framework saying "no such module Speech" import WatchKit import Foundation import…
Derivative
  • 267
  • 1
  • 3
  • 11
2
votes
0 answers

iOS 10 SpeechRecognition with Speech Kit error kAFAssistantErrorDomain - sample SpeakToMe

I'm working on the development of a demo like Siri with Speech Kit, but when I call recognitionTask = speechRecognizer.recognitionTask(with: recognitionRequest) {} to begin listening, it will immediately return an error: Error…
2
votes
1 answer

iOS 10 Speech to text Framework integration : How to know user stop talking

We are following blog present on below URL to integrate Speech Kit framework in our application https://www.appcoda.com/siri-speech-framework/ This sample is working fine. But can anyone know How to detect user has stop talking?. As the audio…
svrushal
  • 1,612
  • 14
  • 25
1
vote
2 answers

How to Implement SFSpeechRecognizationTaskDelegates

I am trying to implement a speech to text application,i am able to record the audio from Microphone by using SFSpeechRecognizer .The use case is as soon as the user stop speaking ,a method should invoke and stop the recording automatically .Would…
1
vote
1 answer

How to implement Nuance Speechkit when using CocoaPods in Swift

Between the pod spec and what is currently on S.O. I had a tough time figuring out how to get speech-to-text working using SpeechKit + CocoaPod + Swift. Finally got it working so figured I'd help the next poor soul that comes looking for help! :)
Sean
  • 2,412
  • 3
  • 25
  • 31
0
votes
1 answer

Can't install speechkit for python 3.11.4

I can't understand what the problem is. I installed vs_BuildTools, C++ development, wrote in terminal: pip install grpcio, pip install grpcio-tools, python -m pip install --upgrade setuptools==64.0.2, pip install --upgrade pip, pip install wheel,…
D1JEXX
  • 1
  • 1
0
votes
0 answers

Python grpcio-tools and yandex speechkit

i have a problem. I try pip install speechkit and have a problem with grpcio-tools. PS G:\PyPro\YaTextToVoice> pip install speechkit Collecting speechkit Using cached speechkit-2.1.1-py3-none-any.whl (42 kB) Collecting boto3 Using cached…
0
votes
0 answers

The button doesn't work in SpeechKit / swift

You can find my code below. I wrote code, where I can recognise my speech and prevent it into text. But unfortunately this code works only once, when I need to add recognise my speech again I should to restart the app or a viewController. So I have…
0
votes
1 answer

Stopping Speechkit from crashing iOS 9 devices

I have heavily integrated Speechkit into one of my app's view controllers. Speechkit is only available on iOS 10, but I also need my app to run on iOS 9 devices. Right now, my app crashes on launch on iOS 9 devices; how can I prevent Speechkit from…
owlswipe
  • 19,159
  • 9
  • 37
  • 82
0
votes
1 answer

Siri's s speech to text not working

I am working with the siri's speech to text, But all I get is no response from audioEngine. The audioEngine starts once and after recognizing the first text of speech, it stops, as I want to recognize the speech for certain amount of time. Any…
Vin
  • 456
  • 6
  • 18
0
votes
1 answer

How to detect end of speech with Nuance Vocalizer, Speechkit 2, for iOS

I am using Nuance's Speechkit 2 with swift, iOS 9.3. Ineed to detect when the TTS finishes, according to this documentation: https://developer.nuance.com/public/Help/DragonMobileSDKReference_iOS/Speech-synthesis.html ...These are the 3 delegate…
Josh
  • 6,251
  • 2
  • 46
  • 73
0
votes
1 answer

Trying to play system sound before speech recognition with SpeechKit

I'm trying to implement voice recognition in an iOS Swift app. When the user taps a "mic" button, I'm trying to play a system sound, then use SpeechKit to do voice recognition. The voice recognition works fine, and the sound plays fine, if I comment…
Lastmboy
  • 1,849
  • 3
  • 21
  • 39
0
votes
1 answer

SpeechKit Pod for Swift results in undeclared type errors

I have implemented the Nuance SpeechKit using this CocoaPod https://cocoapods.org/pods/SpeechKit and implementing the instructions from the accepted S.O. answer here:…
Sean
  • 2,412
  • 3
  • 25
  • 31
0
votes
1 answer

Vocalizer voices provided by Nuance Speechkit

I am using Nuance Speechkit for speech vocalisation in my application. In demo application SKVocalizer is initialise with voice @"Samantha" vocalizer = [[SKVocalizer alloc] initWithVoice:@"Samantha" delegate:self]; What are the other English(US)…
rptwsthi
  • 10,094
  • 10
  • 68
  • 109