Control pc by voice command
-
Basudevkuet wrote:
i want build a software in c# that i can control pc using voice commands.... how i will start.... give starting source code....
I want a million dollars ... give money.
If Barbie is so popular, why do you have to buy her friends? Eagles may soar, but weasels don't get sucked into jet engines. If at first you don't succeed, destroy all evidence that you tried.
Is it fun???????
-
This is a complicated task, as you were told yesterday. Microsoft provided a Speech API (recognition and text-to-speech) built in to Vista and Windows 7 See http://en.wikipedia.org/wiki/Microsoft_Speech_API[^] You should re-use this If you want to implement your own, good luck, but given you have asked for the source code directly, the probability of you achieving this yourself is hovering around zero.
Cpianism: I have a negative number in my Rep so please fix it. Chris Maunder: That isn't a bug.
it is possible to control the operating system by voice command.... because one of our senior brother has already done it... but now he is out of network.... if you know please give idea about the process...
-
Basudevkuet wrote: how i will start.... give starting source code
using System;
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}.45 ACP - because shooting twice is just silly
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001what is this?????
-
Is it fun???????
Basudevkuet wrote:
Is it fun???????
Did you see a smiley in his answer? No. So he is deadly serious.
"I love deadlines. I like the whooshing sound they make as they fly by." (DNA)
-
what is this?????
If you don't even know that, than you are truly lost.
"I love deadlines. I like the whooshing sound they make as they fly by." (DNA)
-
what is this?????
Basudevkuet wrote:
what is this
It's what you asked for... starting source code.
Why is common sense not common? Never argue with an idiot. They will drag you down to their level where they are an expert. Sometimes it takes a lot of work to be lazy Individuality is fine, as long as we do it together - F. Burns Help humanity, join the CodeProject grid computing team here
-
it is possible to control the operating system by voice command.... because one of our senior brother has already done it... but now he is out of network.... if you know please give idea about the process...
Obvious, since you've seen it done already, it is possible. It requires writing a lot of code for each of those things you want it to do.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009... -
it is possible to control the operating system by voice command.... because one of our senior brother has already done it... but now he is out of network.... if you know please give idea about the process...
Basudevkuet wrote:
it is possible to control the operating system by voice command
Correct, for example the API that Microsoft provides with Vista / Windows 7 that I suggested does this, it is available for you to use in your code.
Basudevkuet wrote:
because one of our senior brother has already done it
Perhaps heHe almost definately used an API. Now I realise this is a hard concept to grasp, buy as a developer, I assume you'll understand the following: Possible != Easy. Practical voice commanding certainly falls under the "fantastically hard" category, which is why people use the 3rd party APIs (like the Microsoft one I suggested). It is also why none of the APIs work perfectly.
Basudevkuet wrote:
if you know please give idea about the process
The process is as follows:
- Look at the wikipedia entry on my original post
- Google for SAPI 5.3
- Research and use SAPI to provide the functrionality you want
- If you then have specific problems, come back here and post a question following the guidelines
If you make a decent stab at steps 1-3, you are unlikely to get flamed here at step 4.
Cpianism: I have a negative number in my Rep so please fix it. Chris Maunder: That isn't a bug.
-
Basudevkuet wrote:
what is this
It's what you asked for... starting source code.
Why is common sense not common? Never argue with an idiot. They will drag you down to their level where they are an expert. Sometimes it takes a lot of work to be lazy Individuality is fine, as long as we do it together - F. Burns Help humanity, join the CodeProject grid computing team here
Apparently, some folks don't appreciate the irony...
.45 ACP - because shooting twice is just silly
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001 -
Apparently, some folks don't appreciate the irony...
.45 ACP - because shooting twice is just silly
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001John Simmons / outlaw programmer wrote:
some folks don't appreciate the irony
Now John... let's be a little bit reasonable here.... after all with the economy the way it is, most people can't afford to buy a clue.... :)
Why is common sense not common? Never argue with an idiot. They will drag you down to their level where they are an expert. Sometimes it takes a lot of work to be lazy Individuality is fine, as long as we do it together - F. Burns Help humanity, join the CodeProject grid computing team here