Voice recognition

I want to do Voice Recognition , but I don’t know where to start, what tools should I learn and use? What programming language should I use ?, what are the steps for creating this software. Any help, please, any links, any ideas are welcome. I was looking for books but not found ...

Thanks at Advance

+3
source share
4 answers

You cannot mention the programming language and platform, so I will try to be somewhat comprehensive here.

Windows - Speech SDK. , . , , ++, .

Linux , , , . C- , , , Python Perl.

Mac ( ) , NSSpeechRecognizer. , , Objective-C.

+6

.

, , , . , " " - , , "", , "" - , .

( ) , (, "" ) , , - ( " " ), .

, - wikipedia Biometrics . / , wikipedia . , - , - (, ) , , , .

, , : , 100 k $, , .

0

"x-webkit-speech"

, .   

<h1>Enable speech search for your website</h1>
<form method="get">
   <input type="text" name="search" size="30" value="<?=$_REQUEST['search']?>"  id="search" onspeechchange="$('#search').keyup()" onwebkitspeechchange="$('#search').keyup()" x-webkit-speech="" speech="" />
   <input type="submit" value="Search" />
</form>

<?php
if(isset($_REQUEST['search']) && $_REQUEST['search']<>"");
{
    echo "<h2>"."You are searching for:";
  echo "<i>".$_REQUEST['search']."</i></h2>";
}
?>
-3
source

All Articles