Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

voice recognition in mono

Is there any way to add voice recognition feature to mono application. There are a System.Speech (in .net) and Microsoft.Speech (in MS Speech Platform) namespaces, but I can't find any in Mono. So how is it possible to add speech recognition functionality in Mono?

like image 295
kalan Avatar asked Apr 04 '11 06:04

kalan


People also ask

How many types of voice recognition are there?

There are two types of speech recognition. One is called speaker–dependent and the other is speaker–independent. Speaker–dependent software is commonly used for dictation software, while speaker–independent software is more commonly found in telephone applications.

What is voice recognition algorithm?

A speech recognition algorithm or voice recognition algorithm is used in speech recognition technology to convert voice to text. Speech recognition systems have several advantages: Efficiency: This technology makes work processes more efficient.

How is AI used in voice recognition?

Voice AI is a conversational AI tool that uses voice commands to receive and interpret directives. With this technology, devices can interact and respond to human questions in natural language.

Do you need PyAudio for speech recognition?

You'll start to work with it in just a bit. SpeechRecognition will work out of the box if all you need to do is work with existing audio files. Specific use cases, however, require a few dependencies. Notably, the PyAudio package is needed for capturing microphone input.


1 Answers

Looking at this link: Mono System.Speech

It seems as though System.Speech.Recognition is now supported. Are you pulling a recent (3.0+) tarball and building your own Mono runtime?

like image 99
Jeremiah Gowdy Avatar answered Oct 01 '22 14:10

Jeremiah Gowdy