Whenever I say "Search for" something, my web browser will open will a random search term. It's almost if the computer couldn't understand me. I even spoke pure U.S. English and it still didn't quite get it. (Windows Form App C#)
Scenario 1: I said "Search for Facebook" and Google opened and the search text said "baseball"
Scenario 2: I said "Search for cars" and Google opened and the search text said "cost"
Scenario 3: I said "cat chases mouse" and Google opened and the search text said "and cat feces miles"
Is there anyway to better way to train the speech recognition?
//Search Google
default:
if (speech.ToLower().Contains("search for")) // See if the string contains the 'search for' string.
{
string query = speech.Replace("search for", ""); // Remove the 'search for' text.
// Old code (does not make the text fully URL safe)
// query = query.Replace(' ', '+');
query = System.Web.HttpUtility.UrlEncode(query);
string url = "https://www.google.com/search?q=" + query;
System.Diagnostics.Process.Start(url);
}
break;