Use Google "Speak Now" in C #

Google recently announced a feature in the Chrome browser to search for text or translate texts using a microphone.

http://www.seroundtable.com/google-search-speak-now-13346.html

I would like to develop a C # desktop application to send voice to google and return results. How can I do that?

+6
source share
1 answer

Google does not have a speech recognition API for desktop computers. They only have a speech recognition API for Android developers. However, you can download the Microsoft Speech Recognition API here: http://msdn.microsoft.com/en-us/library/ms723627(v=vs.85).aspx , and you can read how to make it work in C # here : http://windowscoding.com/blogs/blake/archive/2006/11/01/How-to-use-Microsofts-Speech-API-in-a-managed-application.aspx

Once you run api recognition on the pattern that you want to recognize, you can simply call google.com with the "q" parameter to search for

Please note that Microsoft is not the only company with a speech recognition API. You can use whatever you want.

+5
source

Source: https://habr.com/ru/post/891162/


All Articles