voice-recognition

Calling by skype using C#

心不动则不痛 提交于 2019-12-01 20:07:42
I want to develop an assistant software for blind people like Jarvis . It is a C# form application. I need to connect my C# project with Skype API so as to call to some username by using Skype. When I command by using Call John , it responds by calling to John by Skype. Can someone show me some snippets of code that'll help towards this? To start the Skype call, Process.Start("callto:john"); . You can concatenate "callto:" with the name of the contact. Look at MSDN Documentation on Speech Recognition in C# for writing the code that triggers the call event described above. As seen in the

Speech to Phoneme in .Net

吃可爱长大的小学妹 提交于 2019-12-01 19:09:31
The problem is that I want to get phonemes of a audio speech in C# language. say you have an audio file like "x.wav" that says "hello dear Shamim". i want to extract all the phonemes of the speech and their relative timings. something like the picture below: I used System.Speech library (both recognition and synthesis namespaces) but i didn't find what i wanted. Now don't be mistaken! I don't want the phonemes of the sentence "hello dear Shamim", i want to extract the phonemes from an unknown audio input that speaks and English sentence. I tried System.Speech.Recognition but it tries to

Speech to Phoneme in .Net

橙三吉。 提交于 2019-12-01 17:52:59
问题 The problem is that I want to get phonemes of a audio speech in C# language. say you have an audio file like "x.wav" that says "hello dear Shamim". i want to extract all the phonemes of the speech and their relative timings. something like the picture below: I used System.Speech library (both recognition and synthesis namespaces) but i didn't find what i wanted. Now don't be mistaken! I don't want the phonemes of the sentence "hello dear Shamim", i want to extract the phonemes from an unknown

How “ok google” technology is implemented [closed]

≡放荡痞女 提交于 2019-12-01 14:45:14
I've read a little about Speech/voice recognition, and I wonder how does it work. For instance, "ok Google" on android and similar cases ? I would like to know how it works (how to differentiate and analyze a word in a continuous feed, to find of it's a keyword). If I think about it as a continuous text feed, one way of doing it would be Isolating a given length of the feed, then find a keyword. An audio feed is a little bit harder to understand, as there is no pure silence between words (as said) and isolating a given length doesn't guarantee cutting a keyword at the beginning or at the end

what to do for voice application for ios?

不羁的心 提交于 2019-12-01 13:44:13
how to make Vlingo like application? is there any api that can be used for making apps for ios? Please provide some guide line or any tutorials or an help or comment will be appreciated Thanks in advance i also like to know how the talking ben the dog and talking tom cat is working as we talk it repeats it in funny voice. how it is possible? Michael Levy For Speech Recognition on iOS, there have been many similar questions. Please see Speech to text Conversion.? or Text-to-speech (voice generation) and speech-to-text (voice recognition) APIs? or Speech recognition framework for iOS that

Is it possible to use WIndows Speech Recognition Engine in a word pronunciation game?

孤人 提交于 2019-12-01 09:28:17
I use to create an application that uses the windows speech recognition engine or the SAPI. its like a game for pronunciation that it give you score when you pronounce it correctly. but when i started experiments with SAPI, it has poor recognition unless if you load a grammar on it (XML) its give best recognition result. but the problem now is closest pronunciation from the input text will be recognize. for example: Database -> dedebase -> correct. even if you mispronounce it. it gives you correct answers. without using the xml grammar when you say database it give you "in the base/the base

Is it possible to use WIndows Speech Recognition Engine in a word pronunciation game?

夙愿已清 提交于 2019-12-01 05:45:54
问题 I use to create an application that uses the windows speech recognition engine or the SAPI. its like a game for pronunciation that it give you score when you pronounce it correctly. but when i started experiments with SAPI, it has poor recognition unless if you load a grammar on it (XML) its give best recognition result. but the problem now is closest pronunciation from the input text will be recognize. for example: Database -> dedebase -> correct. even if you mispronounce it. it gives you

Voice Recognition Connection Error

佐手、 提交于 2019-12-01 04:28:55
问题 I,m trying to work through and test a Voice Recognition example based on the VoiceRecognition.java example at http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/VoiceRecognition.html but when click on the button to create the activity, I get a dialog that says Connection problem. My Manifest file is using the Internet Permission, and I understand it passes the to the Google Servers. Do I need to do anything else to use this. Code below UPDATE 2: Thanks to

Does the Google speech recognizer on Android need internet?

倾然丶 夕夏残阳落幕 提交于 2019-12-01 04:09:58
问题 I use the following code to invoke the voice recognizer by google: // This is a demonstration of Android's built in speech recognizer package com.example.voiceinputbuiltintest; import java.util.ArrayList; import java.util.Locale; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.speech.RecognizerIntent; import android.view.Menu; import android.view.View; import android.widget.Button; import android.widget.TextView; import android.widget.Toast

Speech to Text: Play MP3 message by itself and retrieve words

房东的猫 提交于 2019-12-01 01:57:46
I have few MP3 files which are speeches. I have used Android Speech to Text before so I know it can store spoken words. Is there any way where we can get the spoken words from the MP3 and display it in a EditText ? I am thinking about playing the MP3 silently and identify the words, but have no idea about how to do that. I am using Google Speech Engine. There is no native way to convert an audio file that contains spoken words to text on Android. You'll need to use a third-party API to do this, such as. A&T Nuance iSpeech And perhaps Pocket Sphinx , although you may have to write the file