Speech to Text Converter In Xamarin Uwp - xamarin

I need to implement the audio to text converter in the Xamarin Uwp platform specific. I am able to record the audio and save that audio. But now I need to convert that audio file in to text file. If anyone can suggest me any working good example than it would be really good for me.

There is a Speech-To-Text API in UWP, but it's moslty for commanding, e.g. executing actions based on what the user is saying. At least that's what I've seen it used for. You can read about that here.
What you probably want is something like the speech recognition that Microsoft Cognitive Services offers. You can upload an audio file of up to 15 minutes and retrieve a transcript of the file. You can read about that here.

Related

Share videos camera roll wp 8

I tired to googling that how share videos form camera roll in windows phone 8 like in Nokia video upload and facebook app. I used to try this
http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff967563(v=vs.105).aspx
Only share picture but I want to share only videos for my app e.g. when my app show in list when share a video by camera roll of windows phone in sharing
To quote the link you included in your question:
Note that this extensibility is only available when the photo is a JPG
file.
And from my experience, I can confirm that it is not possible to register your app as a share target for a video file.
In other words, if a user tries to share a video from the camera roll or another app, there is no way to make your app appear as one of the options in that list.
Did you try using the share media task function?
Check this article out from the msdn :
http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj207027(v=vs.105).aspx
You can use MediaLibrary and there is already an answer for your question in this link. As said, there is no way to select existing sound media and video files through default choosers. Thank you.

Can I get the video file in Camera roll on window phone?

As I know, there is no way to get the video file in the camera roll.
But recently I did it when using updated WhatsApp.
Wahtsapp supportes video file uploading which is not in saved IsolatedStroage in wp7/wp8 devices.
How did it?
Now I'm researching but can't find.
Please help me.
There is still no documented API for loading existing videos.
From WPCentral:
The ability to send videos has been in WhatsApp for quite some time,
but an OS limitation prevented the app from accessing the media
library to fetch pre-recorded videos. Since early 2013 though, Nokia
has been working with the WhatsApp developers and it looks like it
paid off to have friends in high places. Through Nokia’s assistance
(and indirectly, Microsoft’s), WhatsApp now has permission to grab
videos from your library to send to friends.

WP7 - Text to speech API

I'm finding it impossible to create any form of text to speech program. I've scoured the internet and can only find two examples, neither of which work. I've already got and used my Bing app ID so it's not a missing ID causing the problem.
Does anybody know where there is a working example or could provide some sample (functioning!) code.
Thanks.
In Windows Phone Platform if you want get be work with Text To Speech. There are be have two you can be choose:
【1】Bing Search Text To Speech Service :http://www.codeproject.com/Articles/259727/Text-to-speech-in-windows-phone7
【2】About TTX Nuance Dragon SDK have Been Support Windows Phone Platform : http://www.nuance.com/for-developers/dragon/index.htm

Is it possible to use Speech Recognition module in my application?

I saw a picture in #Matthieu's blog http://wp7wonders.wordpress.com/ yesterday(sorry,I can't find it now.
This picture have a textbox within a microphone icon just like the search page in phone.
My qusetion is can I use this feature in my application?How?
thanks.
There are no on-device or framework assemblies that you can use to perform speech recognition directly in your applications. However, Kevin Marshall has a blog post that shows how to implement speech recognition by using Web services that use System.Speech and the microphone.

simple record and play application!

I am trying to make a simple application which will store the sound said by user , say on click of record button and will play it back to him/her , say on click of play button.
Can anyone suggest me some appropriate way to do this ??
Thanks,
Miraaj
You can use QuickTime Kit's capture APIs to record a movie of the audio, and QTMovie (from the same framework) to convert it to a more conventional format for audio files and to play back both the intermediate file and the converted file.
There used to be a QuickTime Kit Programming Guide, but it didn't cover capturing and is now gone from developer.apple.com. You should file a bug against the docs.
This answer will work in a Cocoa (Mac) app. If you meant to ask about the iPhone, you should re-tag your question, as the solution will be completely different for a Cocoa app vs. a Cocoa Touch (iPhone) app.
I used direct sound to create an entire internet phone application a few years ago. Your question is far simpler, you won't have to deal with the circular buffer as critically. Direct sound is pretty main stream and you can find a lot of help with it in forums, and it's free!

Resources