speech-recognition

Using Google Api: Speech To Text on PC Version

我只是一个虾纸丫 提交于 2019-12-12 19:58:02
问题 Google Chrome provide speech to text(STT) and So many smart phone apps provide STT. It has good recognition. I want program in Visual Studio(MFC), But there's no methods to do STT. If I use Google Speech To Text Api, It's so easy to settle this problem. If there's no public google api about STT, Tell me another way to this except with start. 回答1: To my knowledge, Google has not documented their speech API and do not intend it to be used by general purpose clients. I believe their intent is

Using google speech recognition on android wear without showing specific ui

怎甘沉沦 提交于 2019-12-12 17:05:29
问题 This is my first question here on stackoverflow, so sorry if i am doing something wrong. I have an app on android wear, where the user shall select an item from a list. I want to enable the user to select the item via voice commands. I managed to do it as suggested in the google documentation, but i have to implement a button to start speech recognition, and it will show up as a fullscreen activity. I want the user to be able to see the list while speech recognition is active. Is there any

How can I use voice recognition with other languages android

天涯浪子 提交于 2019-12-12 16:24:13
问题 I have a code that used to worked but for some reason it suddenly just stopped working, I'm trying to use voice recognition in Hebrew but it seems like since a few days ago it just starts voice recognition in English. Here is my code sr = SpeechRecognizer.createSpeechRecognizer(getApplicationContext()); test_voice_recognitiona listener = new test_voice_recognitiona(); sr.setRecognitionListener(listener); Intent fl = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); fl.putExtra("android

Speech recognition doesn't work in Unity Hololens project

别说谁变了你拦得住时间么 提交于 2019-12-12 14:32:45
问题 I'm trying to create my own Unity project with speech recognition in Hololens. I copy pasted the instructions from tutorial. Literally copy pasted the SpeechManager.cs file and SphereCommands.cs file to my project but it won't budge. I tried putting some sounds in: KeywordRecognizer_OnPhraseRecognized to see if I get there (even before invoking anything), but I don't. I start the keywordRecognizer.Start() (also added sounds to make sure I was there) but I have no idea if it's working

Are there any limitations with using Chrome Speech Recognition?

情到浓时终转凉″ 提交于 2019-12-12 12:08:27
问题 I want to use webkit-speech-recognition in my commercial web-application. Are there any limitations (limit of queries by site, prohibition of commercial use)? 回答1: There is a timeout after 5 minutes (300 seconds) Though I couldn't find any documentation. 回答2: +1 for the question. I am curious about this too. Just be weary if you are developing for mobile as HTML5 speech regonition API for Chrome does not work on mobile iOS for iPhone and iPad. See: Add iOS speech recognition support for web

Segment Timestamps in pocketsphinx

纵饮孤独 提交于 2019-12-12 10:17:29
问题 I am trying to extract the start and end timestamps of each segment using pocketsphinx. The code below works for extracting the word token. How can I access the timestamps? I've tried looking at the documentation here http://cmusphinx.sourceforge.net/doc/pocketsphinx/index.html but could not find the method #!/usr/bin/env python import os import sphinxbase as sb import pocketsphinx as ps MODELDIR = 'deps/pocketsphinx/model' DATADIR = 'deps/pocketsphinx/test/data' # Create a decoder with

French speech recognition on iOS

半腔热情 提交于 2019-12-12 10:14:40
问题 I'm trying to develop an iOS app using speech-recognition for french language, but have been unsuccessful until now. I tried using the openEars framework, which worked great for english language, but doesn't support french. I used some info from this link. If anyone know a solution it would be awesome. Thanks 回答1: Openers is using English Acoustic and Language Models by default. So it works well with english, but doesn't support french. You can download French Acoustic and Language Models

Analyzing commands in android speech recognition results

强颜欢笑 提交于 2019-12-12 10:12:51
问题 i have a speech recognition app in android and i want to compare the results that i get with my own strings this is my code if (requestCode == REQUEST_CODE && resultCode == RESULT_OK) { ArrayList<String> matches = data.getStringArrayListExtra( RecognizerIntent.EXTRA_RESULTS); for(String resultString: matches) { if(resultString.equalsIgnoreCase("go")) Toast.makeText(getBaseContext(), "go", Toast.LENGTH_SHORT); else if(resultString.equalsIgnoreCase("stop")) Toast.makeText(getBaseContext(),

Anyone have experience with Sphinx speech recognition?

爱⌒轻易说出口 提交于 2019-12-12 09:53:58
问题 Has anyone used the Sphinx speech recognition stack to build IVR applications? I am looking for open source alternatives to the expensive and somewhat limiting choices from MSFT and others. I have not been able to find a comprehensive package that ties open source speech/voip applications together. 回答1: Last I looked at Sphinx, it had issues with 8khz audio which resulted in really poor performance. There's not a lot of people talking about successful deployments of Sphinx in real

Speech Recognition Engine Not Firing Event in Windows Service

这一生的挚爱 提交于 2019-12-12 08:44:15
问题 So I have a windows service with speech recognition implemented using the system.speech recognition engine. My speech recognition code runs fine when I start the service but no events for speech recognized fires. The strange thing is, if I run the exact same code, but in a console or WPF app instead, the event firing for speech recognition works just fine. I have already attached a debugger to my service process to check what was going on behind the scenes. It seems as though the speech