Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Voice/Speech to text [closed]

I need an API or library (preferably free) that will convert voice/speech through a microphone, into text (string).

Additionally, I will need an API or library that can do text-to-speech.

I'd like to use C# and .NET, but other languages will suffice.

Thanks.

like image 307
charles_har Avatar asked Jan 13 '11 06:01

charles_har


People also ask

Does Windows 11 have speech-to-text?

In Windows 11, dictation has been updated and renamed as voice typing. Like dictation, voice typing uses online speech recognition technologies to power its speech-to-text transcription service. You no longer need to turn on the Online Speech recognition setting to use voice typing.


1 Answers

You can use CMU Sphinx as it is pretty open and scalable solution and I think it can be used at both client and server side:

http://cmusphinx.sourceforge.net/

If you are looking for a Microsoft desktop solution then you can use SAPI:

http://msdn.microsoft.com/en-us/magazine/cc163663.aspx

On server side, you can use Microsoft Unified Communication, but do consider licencing as well:

http://www.microsoft.com/uc/en/gb/default.aspx

Update:

This thread has also some good reference:

C# Speech Recognition - Is this what the user said?

like image 196
ShahidAzim Avatar answered Sep 30 '22 05:09

ShahidAzim