speech-recognition

9Implementing Nuance Speech Recognition on Swift, cannot listen to onResult, onError… events

邮差的信 提交于 2019-11-29 12:45:18
I have two parts of my Speech Recon project with Nuance, the .h file of a module (ObjectiveC) and a ViewController (swift). I want to set up a SpeechRecognition object in my swift viewController , and listen to onBegin, onStop... and such methods. The only way to make it compile is to use nil as the delegate parameter to initialize the SpeechRecon object. Obviously this is not good because my onStart... and onFinish functions don´t trigger. I have implemented a protocol to the SKRecogniser file, and extended my ViewController class to SKReconDelegate... but if I use "self" as a delegate to

Speech recognition API for all browsers [closed]

末鹿安然 提交于 2019-11-29 12:19:40
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 the examples are using google speech API. i would prefer Javascript API but if i can even get C# or PHP API and worked on all browsers that should be fine as well. Thanks in advance Amadan Speech API only currently works on Chrome and Opera ( caniuse.com ). You cannot use C# or PHP API in

Get URI of saved audio in OnResults(Bundle result) in Speech RecognitionListener android

戏子无情 提交于 2019-11-29 11:46:16
I followed almost everylink for audio saving and converting it to text but I did not find any way that how I can get audio Url in custom Recognition Listener record/save audio from voice recognition intent How to use Androids' speech to text with audio sample file and many others as welll.... Audio url that I got here with the help of RecognizerIntent @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); switch (requestCode) { case REQ_CODE_SPEECH_INPUT: { if (resultCode == getActivity().RESULT_OK && null !

Continuous Speechrecognition in Android

非 Y 不嫁゛ 提交于 2019-11-29 11:35:43
I googled around and found the regular speech-api from google. But I think this isn't what I need. I need continious voice recognition and the ability to launch other actions when a specific word is spoken. Is there anything in the android sdk that I can use? If not: Is it possible to implement third-party libraries? (If yes: which - and what do I have to think about when implement a third-party-library?) Edit: I thought about this again. I have to recognize just one 'word' (that probably won't be in googles-speech-databases). I have the chance to record it. That means, I'm able to

Android SpeechRecognizer “confidence” values are confusing

南楼画角 提交于 2019-11-29 11:17:50
问题 I'm using the SpeechRecognizer via Intent: Intent i = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); i.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); i.putExtra(RecognizerIntent.EXTRA_PROMPT, "straight talk please"); i.putExtra(RecognizerIntent.EXTRA_MAX_RESULTS, 5); i.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "en-US"; startActivityForResult(i, 0); And I get the results in onActivityResults() like this: protected void onActivityResult(int

Launch app on voice command (android)

旧城冷巷雨未停 提交于 2019-11-29 11:03:49
I need an example of how I could launch my app on a voice command (trigger word). So some sort of a service running in the background listening to everything and if the word matches a set textual value (I guess this can be done through Voice Recognition), app will open. I know this is possible, but I've no clue where to start... I see other apps are able to establish this. I've close to 1 million users and this is one of the most often requested features. To do this you have to run Android speech recognition as a service instead of as an activity. Then have your service listen for the key word

Speech recognition framework for iOS that supports Spanish [closed]

孤街醉人 提交于 2019-11-29 10:29:15
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Is there a speech to text framework for iOS that supports Spanish out of the box? Commercial or OS is ok. 回答1: There are a bunch of

Undefined symbols for architecture armv7 while integrating speechkit of nuance dragon mobile

自古美人都是妖i 提交于 2019-11-29 09:58:09
I integrating my app with speechkit of naunce dragon mobile when run i am below error: Undefined symbols for architecture armv7: "_kCFStreamPropertySSLPeerCertificates", referenced from: l469 in SpeechKit(libSpeechKit.a-armv7-master.o) l642 in SpeechKit(libSpeechKit.a-armv7-master.o) l643 in SpeechKit(libSpeechKit.a-armv7-master.o) "_kCFStreamSSLValidatesCertificateChain", referenced from: l469 in SpeechKit(libSpeechKit.a-armv7-master.o) "_kCFStreamSSLAllowsAnyRoot", referenced from: l469 in SpeechKit(libSpeechKit.a-armv7-master.o) "_OBJC_CLASS_$_AVAudioPlayer", referenced from: objc-class-ref

Speech processing library in Python for speech to text

百般思念 提交于 2019-11-29 09:35:36
问题 Hey I am looking to build a code in python which will recognise what i speak through the micrphone and convert to speech, can you please give me few effcient speech processing libraries for achieving the same?? 回答1: See pyspeech (python) - Transcribe mp3 files? which talks about http://code.google.com/p/pyspeech/. You may also want to look at http://code.google.com/p/dragonfly/ 回答2: The dragonfly sample code misses out on a snippet while providing the code example at https://pythonhosted.org

Recognizing multiple peoples voices

爱⌒轻易说出口 提交于 2019-11-29 08:43:10
I am looking for an open source voice recognition engine that, instead of responding to spoken words, can determine who is speaking. Does anyone know where I might be able to find something like this? You can consider Bob SPEAR https://pypi.python.org/pypi/bob.bio.spear Alize/Mistral http://mistral.univ-avignon.fr/index_en.html GMM speaker identification in matlab https://github.com/codyaray/speaker-recognition Very basic speaker recognition in Java, not really accurate https://github.com/amaurycrickx/recognito In python, quite a state of the art toolkit https://pypi.python.org/pypi/SIDEKIT