speech-recognition

android speech recognition emotion detector

我的梦境 提交于 2019-11-29 23:54:27
问题 i would like to create an emotion speech recognition application in android which will detect the emotion of the users through getting the sound of their voice. is it possible to make this kind of app in android?if yes, can you give me links that will help me to make this possible. thanks! 回答1: In any software application, you need three things: Inputs --> Processing --> Outputs So you will have to split this project into these three categories: INPUTS: Recording voice data PROCESSING: Run an

Large vocabulary speech recognition in iPhone without internet?

守給你的承諾、 提交于 2019-11-29 23:13:10
问题 I used Openears which needs dictionary. It is usefull when we mention the word in dictionary. I wanted to convert all words we speak. So I used Nuance’s speech to recognition dragaon SDK. But it communicates with webserver. I want to avoid server communication because of security concerns. Is it possible to convert speech to text for all words we speak as it is in windows mobile without communicating server only in offline mode? 回答1: Speech recognition with unlimited vocabulary requires very

Speech Recognition & Programming [closed]

不打扰是莪最后的温柔 提交于 2019-11-29 22:13:23
Has anyone had success with Dragon Naturally Speaking voice recognition software when it comes to programming? I am wondering because I think it would be a lot faster than me typing by hand, and easier on my carpol-tunnel. I program from day to day in visual basic 6 ide, visual studio 2008 ide + team explorer, writing emails, and chatting over Windows Live IM. I have a need for a command-based interface where I can bind voice commands to keystrokes, switch between spelling / saying words / saying words without spaces, etc. Any comments are much appreciated. I think that "voice programming" and

Handling RecognitionListener Errors

天大地大妈咪最大 提交于 2019-11-29 21:52:48
问题 I am using the Android's speech API to continuously getting input from the user. However this doesn't work quite well when errors occur. What I do is restarting the listener in the method that detects error. It works sometime but the recognizer hangs often for some time. Especially after detecting Server, network time out and recognizer busy errors. This is annoying! I have found some attempt to solve this problem, but none of them worked for me. Do you have a better idea? Here i my code:

iPhone: Speech Recognition is in IOS SDK available?

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-29 21:26:38
Does anyone knows that if "speech to text" and "text to speech" api's used in Siri are accessible in IOS 5 or IOS 6 SDK? I researched but couldn't find anything about it in documentation, so if thats not included in SDK are there any "Siri" quality libraries in market? Siri is not available in API form yet, however, any UITextField or UITextArea can be dictated to using the built-in option for speech-to-text. Check out Openears at: http://www.politepix.com/openears I've used it experimentally and it worked great. It will recognize preset vocabularies very well. There is a slight pause of 1/2

Compare voice wav in android or voice tag ( voice commands ) API

风流意气都作罢 提交于 2019-11-29 20:33:32
问题 I'm developing an app and I need some way to compare 2 voices if they' match or not, I know that Voice Recognizer is a way to do that but since (i think) it needs to translate the voice into string first, it won't be so suitable for other language apart from the lang supported by the speech recognizer....any idea? Just like old-day phone used to do, the voice tag where it just compare the voice input with the voice it recorded earlier during the setup 回答1: A relatively simple way to do this

Speech recognition in C or Java or PHP? [closed]

与世无争的帅哥 提交于 2019-11-29 19:54:32
Is there any well known established framework for C or Java or PHP to do speech recognition applications? Microphone audio input and it will recognize English words. Such as pseudo code: Speech s = new Speech(); s.input(micStream); result = s.recognise("Hello"); if (result) { printf("Matched hello"); } else { printf("No match found"); } Follow up: Download this: sphinx4/1.0%20beta6/ Add the libraries Copy & paste code: a) xml file put somewhere, which can be loaded from the code: https://gist.github.com/2551321 b) use this: package edu.cmu.sphinx.demo.hellowrld; import edu.cmu.sphinx.frontend

Audio analysis to detect human voice, gender, age and emotion — any prior open-source work done?

本秂侑毒 提交于 2019-11-29 19:54:23
Is there prior open-source work done in the field of 'Audio analysis' to detect human-voice (say in spite of some background noise), determine speaker's gender, possibly determine no. of speakers, age of speaker(s), and the emotion of speakers? My hunch is that the speech recognition software like CMU Sphinx could be a good place to start, but if there's something better, it'd be great. I'm a graduate student doing speech recognition research. These are open research problems, and, unfortunately, I'm not aware of open-source packages that can do these things out of the box. If you have some

Android Speech Recognition not working

五迷三道 提交于 2019-11-29 16:33:48
I'm using this example from newboston and it prompt me for recording but after it recognized what I said, it won't update the list view. Here is the code. public class MainActivity extends Activity { private static final int RECOGNIZER_RESULT = 1234; ListView list; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); list = (ListView) findViewById(R.id.list); Button btn_speach = (Button)findViewById(R.id.btn_speak); btn_speach.setOnClickListener(new OnClickListener() { public void onClick(View v) { Intent intent