Are there any Google Speech Recognition API document filed for Window Phone ? I am currently doing my Final Year Project as a student and need implement Google Speech Recognition .
I saw app's like VoiceTranslator For Windows Phone which is powered by Google's Engines.
Hence , is there any document that I could refer to to implement Google Speech Recognition API in my window phone Application ?
Or Are there any other Speech Recognizer Service I can benefits from?
J.A.R.V.I.S. Java Speech API uses Google services for the synthesizer and recognizer. Internet connection is required for the service to function.
What you can do is to take the precompiled JAR (here) and include it in your C# application. You can check this SO post -- Use a .jar java library API in C#? for information on how to include the JAR in .NET program. One thing to note though, I believe this is not an official solution provided by Google.
You can utilize Google Speech Engine with http connection. It's a kind of hook.
More info here: http://mikepultz.com/2011/03/accessing-google-speech-api-chrome-11/
I made it work for Android, but for Wp it is also feasible.
Related
I want to create a mobile application with Xamarin Forms that will recognise speech and send commands to Esp32 board. Can anyone suggest good library/nuget for speech recognition?
You can try to use the Azure Speech Service to do the speech recognition work in your xamarin.form project. The official document shows the details about how to use it with the xamarin.forms.
For more information, you can check the official document and refer to the official sample.
I am developing application in C# for speech recognition. I want to use google speech api for that purpose. I am developing application for this scenario
for Example:
I: I need your help my Computer?
Application: What type of help you required for me.
I generate key from Google cloud platform--> API ID manager--> credential.
I take code from here How to use google speech recognition api in c#?
Help me out how to solve this problem?
I am learning development for Windows Universal Platform and I wanted to create a simple app capable of leveraging some Spotify data once the user logs in.
I can see from the documentation that there is an SDK for Android and iOS, and a library that is considered deprecated.
Do you guys know if there is any way for me to still communicate with the Spotify API using .NET/C# ?
Thanks a lot,
Florian
There doesn't seem to be a SDK from Spotify, but there are references to WebApi .Net Wrappers at the bottom of this official page:
Spotify Web API Wrapper on Codeplex
Spotify Web API Wrapper on GitHub
I am looking for a Google Speech Recognition API, but I was not able to find any. Google has started service of Hindi Speech Recognition, as an example:- If I say "Kahan jaa rahe ho", then it searches for "Kahan jaa rahe ho" which means it converts speech to text. All I want is that my app should recognize what I say and give that Hinglish Text as output. Can anyone tell me how can I achieve this or any link to documentation, I've already checked an online service (https://dictation.io). I want to implement the same in my app.
Check out the following links- How to use google speech recognition api in c#?
Google speech to text API in C#
https://gist.github.com/satana/75e639434b66e6c62e18
This seems to contain a working example - https://googlespeechtotext.codeplex.com/
Can I use the facebook API to make a windows desktop application? Like create a chat client to use to chat with facebook users??
yes, while I have not done it myself, there seem to be standalone apps developed for facebook like FaceoffIM... so I am assuming you can.
If I remember correctly, Telerik is maintaining something in Silverlight called fdek... which would again mean in principle it is possible.
There is also a Facebook C# SDK available on Codeplex which might be of use... under its project description it states "The Facebook C# SDK helps .Net developers build web, desktop, Silverlight, and Windows Phone 7 applications that integrate with Facebook."
Yes, you can develop desktop applications that interact with the Facebook API's.
You can use the C# SDK which is introduced in this official blog post https://developers.facebook.com/blog/post/395
Basically, any desktop application just needs to send http web requests to the Facebook API's. The easiest would be to use the the Graph API (https://developers.facebook.com/docs/reference/api/)
Hope this helps.