Questions tagged [speech-recognition-api]

Use this tag for Apple speech recognition api, that was introduce with iOS 10

Speech Recognition API for iOS is introduced with iOS 10. It is a new framework which will allow speech recognition for more than 50 languages. This will help audio to text conversion from audio file as well as user voice. Frame work name is Speech and base class for the framework is Speech.h.

You can check more detail about this tag here.

22 questions
1
vote
1 answer

Twilio speech recognition C# package resolving missing attributes

I want to use Twilio TwiML.Gather for speech recognition and my current version is missing the "input" and "hints" (as well as several other) attributes . I was wondering if there is a new package available that has resolved these issues.If not,…
SAG
  • 60
  • 5
1
vote
1 answer

Can we use Sirikit for voice recognition

I have implemented voice recognition in my application for voice to text conversion using Nuance Dragon SDK. I have also tried Open Ears but couldn't get it to work properly. Once conversion is completed I use that text as command to trigger action…
rptwsthi
  • 10,094
  • 10
  • 68
  • 109
0
votes
0 answers

voice to text output when using speech _recognition module in python with recognize_google

getting no text output of what I speak when I run this program, it just shows: Listening... I am not getting any errors, but the program don't give any voice to text output I don't understand what am I doing wrong, I have also installed pyaudio to…
0
votes
1 answer

javax.sound.sampled.LineUnavailableException: line with format PCM_SIGNED 16000.0 Hz, 16 bit, mono, 2 bytes/frame

I'm creating a run-able jar from a project in Eclipse, which consist of a basic sample code for speech recognition using cloud speech. Anyhow the problem is when I run the code from Eclipse it works fine, but when I create a run-able jar and execute…
0
votes
1 answer

UWP Speech Recognition Topic Constraint property topicHint

When declare a new constraint with the class SpeechRecognitionTopicConstraint i need to specify the scenario and the context(topicHint) in this way. var constraint = new SpeechRecognitionTopicConstraint(SpeechRecognitionScenario.Dictation,…
-1
votes
2 answers

Why does the html5 SpeechRecognition API not work when I'm connected to a VPN?

I was making an app to use for my job with the HTML5 SpeechRecognition API (Chrome) and it works great until I connect to a VPN. Surely it's not sending this speech data to a remote source. All my code is served locally. I use a local server so the…
-3
votes
1 answer

Exploring a website's Source code on Python and Text to Speech

I'm new to python and this forum. I am currently using PyCharm, and using it to make a simple code that prints the source code of website on the screen. I saw a video and the code was something like: import requests from bs4 import…
Harsh8V
  • 31
  • 4
1
2