speech-to-text

SpeechRecognizer causes ANR… I need help with Android speech API

℡╲_俬逩灬. 提交于 2019-11-27 06:50:50
EDIT : I should have mentioned this already, but I'm running this code in a service. The entire app is turned on/off by a widget button and has no activity. Update : I tried attaching the SDK sources to the project so I could get a more precise idea of where the failure was occurring, but from the looks of it , only public APIs are included, which seems to make them a lot less useful... can anyone suggest at least a debugging approach for solving this issue? I'm kind of stuck. I'm trying to use Android's speech recognition package to record user speech and translate it to text. Unfortunately,

Speech to Text from own sound file

拥有回忆 提交于 2019-11-27 04:26:09
As you probably know, implementing speech-to-text is pretty easy with the Android API. All you have to do is just call up the API's intent and it will return text for you. My case is a bit different, I have a prerecorded 3GPP sound file that I've recorded from the user and is saved on the SD card. I want to know if it's possible to transcribe that into text like any other speech recognition. Does the speech-to-text API allow for uploading you're own sound files to be processed? Or is this impossible? Kaarel The API does not allow it, but see this blog post and its comments for a potential

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

旧时模样 提交于 2019-11-27 04:01:14
问题 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? 回答1: 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

How Speech to Text conversion in iPhone

余生颓废 提交于 2019-11-27 02:27:15
问题 Is there any way, by which we can convert speech to Text using iPhone SDK? 回答1: 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. 回答2: 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

Cross Browser Speech Recognition

浪尽此生 提交于 2019-11-26 23:22:23
问题 I am currently working on a project in ASP.NET. I need to add voice command which will work on IE/Chrome/Firefox. I have searched a lot, but haven't found any solutions for cross browser. Is there any JavaScript framework to do it? Can i use Google web speech API as a service? Any suggestion will be helpful. 回答1: You can check support for speech recognition in various browsers at Can I Use. At the moment only Chrome supports speech recognition reliably. Others don't, including IE, Firefox and

Google speech Api v1 not working?

纵然是瞬间 提交于 2019-11-26 22:58:46
问题 I have developed an app using the Google speech Api v1 https://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&lang="+language_code; and this link was used to get the response. It was working fine but just from today it's not working. I am not getting any response from that link. Any one have any idea? Is there any alternative links? Please help protected String doInBackground(Void... params) { // TODO Auto-generated method stub String urlString = "https://www.google.com/speech

Speech to Text on Android

≯℡__Kan透↙ 提交于 2019-11-26 22:16:32
问题 I am looking to create an app which has Speech to text. I am aware of this kind of ability using the RecognizerIntent: http://android-developers.blogspot.com/search/label/Speech%20Input However - I do not want a new Intent to be popped up, I want to do the analysis a certain points in my current app, and I dont want it to pop something up stating that it is currently attempting to record your voice. Has anybody any ideas on how best to do this. I was perhaps thinking of trying Sphinx 4 - but

Grammar in Google Web Speech API

时间秒杀一切 提交于 2019-11-26 17:14:49
问题 Can I improve Google speech API recognition by give him a words list (in my case the request of user is very predictable) to make recognition more accurate? 回答1: I can't speak for Chrome, but in Android they are quite clear that you cannot provide a grammar. In Android speech recognition you are limited to a choice of two models: "free form" and "web search". See Android: Speech Recognition Append Dictionary? 回答2: Correct answer is: no, you can't . =( 回答3: Updated answer for August 20, 2019

SAPI and Windows 7 Problem

寵の児 提交于 2019-11-26 16:44:18
I'm trying to recognize speech with Windows 7 but it always recognizes a speech as a command or just says "What was that?". How I can get all speeches? CODE: SpeechRecognizer _speechRecognizer; public Window1() { InitializeComponent(); // set up the recognizer _speechRecognizer = new SpeechRecognizer(); _speechRecognizer.Enabled = false; _speechRecognizer.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(_speechRecognizer_SpeechRecognized); } Perhaps you want to use the .net System.Speech namespace instead of SAPI? There is a very good article that was published a few years ago

Error ERROR_RECOGNIZER_BUSY with offline speech recognition

两盒软妹~` 提交于 2019-11-26 14:36:35
问题 I have made research on google offline speech recognition. but it works fine in google nexus 5(OS:-4.4) but same build if I implement in Samsung galaxy s5(OS:-5.0) it is not recognizing and it is showing this error: 8- ERROR_RECOGNIZER_BUSY. Below is my code. By keeping this link as reference I have made a changes http://www.truiton.com/2014/06/android-speech-recognition-without-dialog-custom-activity/ Without internet voice must recognize. I have worked on Pocket sphinx but it take lot of