speech-recognition

Does Chrome have built-in speech recognition for “x-webkit-speech” input elements?

跟風遠走 提交于 2019-11-27 00:46:08
问题 I'm wondering how <input type="text" x-webkit-speech speech /> Is there a speech recognition enging built into Chrome or is it accessing an underlying speech recognition facility in the operating system? 回答1: Yup, Chrome does speech recognition via Google's servers. But there's no reason that other browsers couldn't choose to implement it differently (for example using some speech recognition facility in the OS). Balu, your link is actually a bit out of date. The latest Google proposal can be

Does iOS provide built in text to speech support or any class like NSSpeechRecognizer?

廉价感情. 提交于 2019-11-27 00:11:54
问题 i have found many libraries like flite which can be be used, as in given here, but I want to know if there is any Built-In class provided by iOS SDK similar to NSSpeechRecognizer provided in OS X. 回答1: There is no built in text-to-speech support in iOS 5 or 6 - you'll need to use a third party library. If you are using iOS 7 you're in luck. There's a new class in iOS 7 called AVSpeechSynthesizer (Apple's docs can be found here). You can use this to perform text-to-speech. Here's a simple

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

Identifying segments when a person is speaking?

独自空忆成欢 提交于 2019-11-26 22:54:47
问题 Does anyone know a (preferably C# .Net) library that would allow me to locate, in voice recordings, those segments in which a specific person is speaking? 回答1: It's possible with the toolkit SHoUT: http://shout-toolkit.sourceforge.net/index.html It's written in C++ and tested for Linux, but it should also run under Windows or OSX. The toolkit was a by-product of my PhD research on automatic speech recognition (ASR). Using it for ASR itself is perhaps not that straightforward, but for Speech

Google's voice search speech recognition service

僤鯓⒐⒋嵵緔 提交于 2019-11-26 22:21:25
问题 Google has speech recognition services available for use from mobile phones (Android has it built in, iPhone users can use the Google application) - http://www.google.com/mobile/. We've found one article where someone tried to reverse engineer the service at http://waxy.org/2008/11/deconstructing_google_mobiles_voice_search_on_the_iphone/. We want to better understand what is happening over the network when we use Android's RecognizerIntent. Does anyone have any experience using this service

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

How to set the language in speech recognition on android?

怎甘沉沦 提交于 2019-11-26 21:57:15
I've been working on speech Recognition API in android and found out that the speech results vary allot when the language settings are changed , is there a way to set it programmatically ? or is there an intent to lunch the speech language settings screen ? or what else ? note: I tried to use this intent extra: intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_PREFERENCE, "en-US"); but it was ineffective gregm As pargat says, this will do it: intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "en-US"); Also, your app can query for the list of supported languages by sending a RecognizerIntent

Android Speech Recognition Continuous Service

…衆ロ難τιáo~ 提交于 2019-11-26 21:52:39
I'm trying to create a service to run continuous speech recognition in Android 4.2. Using the answer from this link ( Android Speech Recognition as a service on Android 4.1 & 4.2 ), I created a service that is run from an Activity. My problem is that I get null exceptions when accessing mTarget.mAudioManager or mTarget.mSpeechRecognizerIntent in the handleMessage method. The target (and mTarget object created from it) is not null , but all the objects inside it are. What am I doing wrong here? Relevant Activity Code (static methods called from activity, activityContext is the activity this

speech recognition from audio file instead of microphone

爱⌒轻易说出口 提交于 2019-11-26 20:58:52
问题 How can I perform speech recognition on speech coming from an audio file (.mp3, wav) instead of the microphone ? I want to be able to do that from C#.NET and Delphi. 回答1: This article answers your question specifically: Using WAV File Input with SR Engines http://msdn.microsoft.com/en-us/library/ms717071(VS.85).aspx See the following articles for general info: http://msdn.microsoft.com/en-us/magazine/cc163663.aspx http://en.wikipedia.org/wiki/Speech_Application_Programming_Interface http:/