speech-to-text

API or SDK to make speech recognition only for numbers (between 1 and 10000)?

你离开我真会死。 提交于 2019-11-28 09:45:03
问题 I need a specialized solution optimized to detect numbers between 1 and 1000 to be used on a smartphone. Best solution would be to have this SDK working offline. Any idea ? I do not find any configuration with Google Speech or Amazon Transcribe to allow "number only" 回答1: It is not quite right to strictly expect numbers from people, they usually say many things like "i don't know" or "wait a bit" even if you ask them for numbers. You will harm the experience significantly. You have to analyze

Speech To Text Recognizer not found

回眸只為那壹抹淺笑 提交于 2019-11-28 08:56:32
问题 I'm building an app that record the user's voice and then converts it to text. From this post Stackoverflow Post I've found the source code android developers, I've run the code but the button text reads "RECOGNIZER NOT PRESENT". I think I must be missing some permissions or something becouse earlier I created a Text to Speech converter and it was working fine. Any ideas what might be the problem? 回答1: I am not sure why the recognizer functionality is not available on all devices. Make sure

How Speech to Text conversion in iPhone

浪尽此生 提交于 2019-11-28 08:49:23
Is there any way, by which we can convert speech to Text using iPhone SDK? Yes, if you are Google , Dragon , or Siri . The iPhone SDK does not provide any access to the iPhone 3GS's built-in voice recognition, which is apparently none too elaborate anyway. Your best bet is to find a web service to which you can upload audio clips for analysis. Krishnan ,This is Reply for your Comment Is that the same case for Text to speech? . No there is Library called OpenEars by using this Library you may achieve the text to Speech functionality. OpenEars OpenEars is an open-source iOS library` for

Offline voice recognition android taking unwanted voice

旧巷老猫 提交于 2019-11-28 07:51:07
问题 I have did a lot for research and tried offline pocket sphinx but it is taking surrounding voice it is taking and reacting my app differently. Is there any Google offline app for above kitkat 4.4.. i am trying it from 2 week. Thank for your valuable answer. Details: When the activity starts first text has to read the content (Text to speech) after it complete, reading voice recognition has to take voice and as per command ex: (next, previous, forward, option, 1, 2, 3, 4 etc). As per command

Speech recognition API for all browsers [closed]

邮差的信 提交于 2019-11-28 05:53:47
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I have seen Google Speech API which is only working on chrome 25+ versions and HTML5 Speech API is also working on chrome only. I am wondering is there any good Javascript/ Jquery API so that i can used it to work on my project. Please if anyone can help me out that would be great. I am searching alot but all

Android Speech to Text Example

与世无争的帅哥 提交于 2019-11-27 20:10:26
问题 I've looked at the Android example for VoiceRecognition, but I don't really understand what it is suppose to do or how it works. In the manifest there isn't any sort of main activity to run and so when I install the app on my phone I can't run it. I'm also trying to find a simple example of Speech to text that takes speech as input and outputs the text on the screen. Just so I can study it to see how it works, but I haven't been able to find any sort of example on the web that shows it. 回答1:

Keyword Spotting in Speech on Android?

ぃ、小莉子 提交于 2019-11-27 19:05:23
问题 I need to use speech input to insert text. How can i detect keyword when I'm speaking ? Can i do this with Android Speech Input or I need external library ? Any ideas ? Thanks 回答1: Keyword detection task is different from a speech recognition task. While second tries to understand the text being spoken and check all possible word combinations, keyword spotting usually check two hypothesis - word is here or garbage is here. Its way more efficient to check keyword presence but it requires

SAPI: Speech to Text example

≯℡__Kan透↙ 提交于 2019-11-27 16:58:36
问题 I am new to SAPI, and I would really appreciate if any of you can provide me a speech to text Hello World example in SAPI. I know MS got some examples like "Dictation" etc, but I would like to start with a very small one. Glad if you can help. 回答1: I played a bit with Windows Voice Recognition using SAPI, it really isn't user friendly. Here is an example of code I wrote (in C++) : #include <sphelper.h> #include <sapi.h> #include <iostream> #include <string> const ULONGLONG grammarId = 0;

Stream audio from mic to IBM Watson SpeechToText Web service using Java SDK

北战南征 提交于 2019-11-27 16:52:13
问题 Trying to send a continuous audio stream from microphone directly to IBM Watson SpeechToText Web service using the Java SDK. One of the examples provided with the distribution ( RecognizeUsingWebSocketsExample ) shows how to stream a file in .WAV format to the service. However, .WAV files require that their length be specified ahead of time, so the naive approach of just appending to the file one buffer at a time is not feasible. It appears that SpeechToText.recognizeUsingWebSocket can take a

What is the best option for transcribing speech-to-text in a asp.net web app?

喜欢而已 提交于 2019-11-27 09:21:23
I am building a web app for recording voice messages and am looking for the best options for converting the voice messages to text. Does anyone have some suggestions on what to use to make the conversion? Would System.Speech work? Michael Levy System.Speech is a client focused API. Vista and Windows 7 include the speech engines for System.Speech. You could use this for transcription because the client speech engines provided by Microsoft include a dictation grammar. The server speech engines provided by Microsoft do not include a dictation grammar, so they are more difficult to use for