Tagged Questions

6
votes
5answers
6k views

C#: transcribe WAV file to text (speech-to-text) with System.Speech namespaces

How do you use the .NET speech namespace classes to convert audio in a WAV file to textual form which I can display on the screen or save to file? I am looking for some tutorial samples. UPDATE ...
5
votes
2answers
584 views

Improve Speech Recognition, C#

I use System.Speech library to able to recognize speech but it usually recognizes very different. SpeechRecognizer_rec = new SpeechRecognizer(); DictationGrammar grammar = new DictationGrammar(); ...
5
votes
2answers
1k views

System.Speech.Recognition Choosing Recognition Profile

Does anyone know how to change recognition profiles from within a .NET application? I am writing a .NET application that does speech recognition using the capabilities found in the ...
4
votes
1answer
2k views

good Speech recognition API

I am working on a college project in which i am using speech recognition. Currently i am developing it on windows 7 pc and i m using system.speech API package which comes along with .net and i am ...
4
votes
5answers
2k views

Voice/Speech to text

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 ...
3
votes
3answers
470 views

Speech To Text using C#

I am trying to design a text editor using C# language and implement voice recognition for the normal file features , is this possible to implement. I am very sorry if I am repeating the question which ...
2
votes
1answer
97 views

pronunciation scoring(voice correctness)

Are there any algorithms or libraries for C# that can be used to score user pronunciation? For example something like Levenshtein distance for text but for speech. Any related links or information ...
1
vote
3answers
188 views

Issue distinguishing commands from normal speech with SAPI

I'm working on a personal project involving microphones in my apartment that I can issue verbal commands to. To accomplish this, I've been using the Microsoft Speech API, and specifically ...
1
vote
1answer
204 views

Speech recognition in C#

I'm doing a project that involves speech recognition. But here i don't just need to recognize simple commands, I need my application to identify a lengthy sentence. Such as "My name is jack, I live ...
1
vote
6answers
2k views

Speech to Text for Right to Left languages

Is there any way to convert speech to text for right to left languages, e.g Arabic language? UPDATE: I need a speech recognition engine that write Arabic speech to file.
0
votes
0answers
55 views

AppendDictation on Microsoft Speech Platform 11 (Server)?

I'm relatively new to both C# and the Microsoft Speech platform, but I am working on a server application that will need to transcribe free dictation. The MS Speech Platform SDK seemed perfect, and ...
0
votes
1answer
121 views

Trying to use Google Speech2Text in C#

The following simple code tries to post a wave file to Google Speech2Text service, but always fails with either a "Gateway Timeout (504)" or general exception "The operation timed out". Can anyone ...
0
votes
0answers
104 views

C# system.speech.recognition alternates

I am using using system.speech.recognition to recognize a single word from many. Because the accurate is not very good, I want to consider more options the engine gives me. However, the ...
0
votes
1answer
283 views

speech-to-text disable windows auto handler and write what i say

I've started using .NET speech-to-text library (SpeechRecognizer) While googling and searching this site i found this code sample: var c = new Choices(); for (var i = 0; i <= 100; i++) ...
0
votes
3answers
1k views

Convert Audio File to text using System.Speech

I am looking to convert a .wav file recorded through an android phone at 16000 to text using C#; namely the System.Speech namespace. My code is mentioned below; ...
0
votes
1answer
179 views

How to use Speech 2 Text in Microsoft Surface

I'd like to use some speech 2 text in my microsoft surface application. I saw that it is possible, but I don't really know where to start. Is there any framework/library available, or a code snippet, ...