Tagged Questions
SAPI is Microsoft's Speech API which is used to provide text-to-speech (TTS) and speech recognition functionality to applications
10
votes
3answers
344 views
Using SAPI is there a way to enter pinyin for Chinese pronunciation?
The goal is to be able to pronounce something like wo3. System.Speech can handle Chinese characters, but is there a way to input pinyin directly? It seems from ...
7
votes
4answers
5k views
Voice Recognition in C++
I'm looking for a way to implement trainable voice recognition in C++.
I've found the SAPI 5.3 SDK which looks promising, but the only tutorials that I can find are for TTS which is the opposite of ...
5
votes
1answer
195 views
Microsoft Speech Recognition Speed
I am working on a small practice app using Microsoft's speech recognizer. I cannot seem to get it to recognize single words fast enough for what I am doing. I would like to be able to speak normally ...
5
votes
1answer
1k views
Delphi SAPI Text-To-Speech
First of all: this is not a duplicate of Delphi and SAPI. I have a specific problem with the "SAPI in Delphi" subject.
I have used the excellent Import Type-Library guide in Delphi 2009 to get a ...
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
231 views
Text-to-speech using Phonics Sounds
How can I get the phonics sound by pushing any letter key? For example, I want to get the phonics sound of A by pushing the 'A' key.
I'm using Microsoft SAPI v5.1. Can you point me in the right ...
4
votes
2answers
1k views
How to mix Grammar (Rules) & Dictation (Free speech) with SpeechRecognizer in C#
I really like Microsofts latest speech recognition (and SpeechSynthesis) offerings.
http://msdn.microsoft.com/en-us/library/ms554855.aspx
...
4
votes
1answer
664 views
Additional voices to a ASP.NET web app
I have a web application that uses SAPI to do TTS. I run it on Windows Server 2003 that has MS Sam installed by default.
I understand that there are a number of 3rd party companies that sell voices. ...
4
votes
4answers
351 views
Question on Speech Recognition classes in .NET
Is it possible to have an application built using the .NET speech recognition classes and pass in a WAV file for it to go through and create a text representation of it. For example, this what I'm ...
4
votes
3answers
2k views
How to save text-to-speech as a wav with Microsoft SAPI?
I think what I am about to want might be easy for you,so I decided to ask it to you,
Fist I need to turn a text into speech and then save it as wav file.
Could you help me ?
Thanks.
4
votes
3answers
2k views
what is the difference between SpVoice and SpeechSynthesizer
What is the difference between these two methods in C# using the speech API or SAPI?
using SpeechLib;
SpVoice speech = new SpVoice();
speech.Speak(text, SpeechVoiceSpeakFlags.SVSFlagsAsync);
...
4
votes
1answer
4k views
Acoustic training using SAPI 5.3 Speech API
Using Microsoft's SAPI 5.3 Speech API on Vista, how do you programatically do acoustic model training of a RecoProfile? More concretely, if you have a text file, and an audio file of a user speaking ...
3
votes
2answers
78 views
Free-form text with custom SRGS based Grammer
I am trying to develop a Voice based application that would accept user input as speech and perform some actions based on the input. This is my first ever venture into this technology and I am ...
3
votes
1answer
211 views
How to change Windows Speech Recognition output?
I am writing my first speech recognition application by using the System.Speech namespace of .NET Framework 4.0.
I am using the shared speech recognition, loading a default dictation grammar and ...
3
votes
1answer
173 views
How to tell speech recognizer to start recognition?
I am working on a c# application that uses the SAPI COM component.
In the following code snippe, how can I tell the recognizer to start recognition based on the grammar and the wav file? Thanks.
...
3
votes
4answers
290 views
how make function like IsWordPronounceable(SomeWord:String): boolean;
I would like to make a function IsWordPronounceable(SomeWord:String): boolean; "english language"
i am working with SAPI Speech Recognition and i need this function. I use delphi compiler, C/C#/C++ or ...
3
votes
1answer
914 views
Convert Audio(Wav file) to Text using SAPI?
My task is to convert an Audio file not from Direct Speech from Human into text.
e.g If I have "Hello there" store in wav file to it will transcribe it into text and show "Hello there" string on ...
3
votes
1answer
369 views
How to convert Text to Wave using SAPI with multithreading?
I am trying to convert text to wave file using following function. It works fine if called from main UI thread. But it fails when calling from another thread. How to call it from a multi-threaded ...
3
votes
1answer
2k views
PHP as a thttpd module vs CGI in terms of memory usage
I am planning to use php in an embedded environment. Our current web server is thttpd. I am considering two options now: whether to run it as a cgi or as SAPI module. I know cgi has advantage in terms ...
2
votes
1answer
154 views
is it possible to train sapi in C#?
is it possible to train sapi with C#? lets say I have a wav file contains a specific word the engine is not able to detect it or it detects the word but it gives wrong value.. so I need to add this ...
2
votes
3answers
580 views
how to lengthen the pause between the words with text-to-speech (pyTTS or SAPI5)
Is it possible to extend the gap between spoken words when using text to speech with SAPI5 ?
The problem is that esp. with some voices, the words are almost connected to each other, which makes the ...
2
votes
1answer
367 views
Specifying a pronunciation of a word in Microsoft Speech API
I'm working on a small application in C# which performs speech recognition using Microsoft Speech API.
I need to add some non-english words to grammar, whose pronunciation don't obey english ...
2
votes
1answer
677 views
How do I load a text grammar in a SAPI 5.4 C# program?
I've been using SRGS grammars with SAPI 5.4 to define command and control grammars. Now I'd like to switch to text grammars so they'd be compatible with SAPI 5.1 (and possibly even SAPI 4?).
I found ...
2
votes
1answer
493 views
SAPI 5.4 grammars compatible with SAPI 5.1?
I wrote an application in C# for win 7 which used .NET 4.0 and SAPI 5.4 by using a SharedRecognizer in System.Speech. Everything works in that environment, but not on Windows XP.
On Win XP (with SAPI ...
2
votes
2answers
375 views
Playing voice over modem from a Windows service
I'm developing a VB.NET Windows service which is costantly checking a BMS database for new alarms and making phone calls to warn operators remotely. I'm currently using a .NET TAPI wrapper and the ...
2
votes
1answer
682 views
Do I need to install Speech SDK to be able to do speech recognition, even when I'm using .NET Speech Recognition namespace?
I know that I need to install Speech SDK if I'm using SAPI for spech recognition.
But what if I'm using .NET System.Speech.Recognition:SpeechRecognizer class?
2
votes
2answers
1k views
System.Speech.Synthesis installing alternate language voices
The .net framework 3.5 (or vista) provides me with an English voice (David I think) to use with the Speech.Synthesis api. I need a french voice to use with a french dictation practice app I am ...
1
vote
1answer
57 views
Setting up Voice Commands in my VB.net application
I wanted to put voice command options into my application. I read stuff online about grammers and SAPI but I can't seem to figure out how to actually use it in my VB.net applications. Does anybody ...
1
vote
1answer
51 views
Disabling Main Speech Recognition in SAPI 5.3
I'm coding a program which simply understands basic keywords such as 'left' or 'right'.
It works great, however in order to execute the program, first, i must start Windows Speech Recognition. While ...
1
vote
0answers
35 views
Distributing Microsoft Anna recordings [closed]
Is it legal to distribute recordings generated by Microsoft Anna (or any other speech synthesiser) ? I can't find anything to suggest it isn't, but I can't help but shake the feeling that it's a legal ...
1
vote
1answer
24 views
MS SAPI sdk equivalent on OSX
I'm looking for an SDK that would allow me to have speech recognition on a OSX application.
I already have a working code for windows using sapi, to get speech recognition info from an audio file, ...
1
vote
3answers
155 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
35 views
How I will breakdown a voice? How many elements I will get If I breakdown a voice?
I want to analyse a voice and store its breakdown info like pitch,speed,frequencey etc.
After breakdown I want to store those info in a database and then I will use this database to recreate my voice ...
1
vote
0answers
207 views
How to fix compiler errors in SAPI 5.1 Header Files
I got a lot of errors from SAPI 5.1 provided header files and cannot figure out how to fix those problems.
Following is a simple Text to Speech program from Microsoft’s How to Video Presentation. ...
1
vote
2answers
125 views
Audio Subtitle Transcription - C++
I'm on a project that among other video related tasks should eventually be capable of extracting the audio of a video and apply some kind of speech recognition to it and get a transcribed text of ...
1
vote
1answer
200 views
Need a suggestion in Speech Recognition?
I developed an application which converts from voice to text using SAPI 5.1.
As the accuracy is too weak, I decided to create my own grammar, I created my own grammmar which only recognizes numbers ...
1
vote
0answers
330 views
When using SAPI.SpVoice to output to a WAV file, result sounds different than when outputting directly to speakers
I'm trying to write a simple script to run some txt files through the Windows 7 text-to-speech engine (which has the decent Anna voice) and produce wav files. However, the wav files don't sound as ...
1
vote
1answer
183 views
problem in recognition of numbers in system.speech?
speech and i added grmmar which only detects numbers like this
SpeechRecognitionEngine RecognitionEngine = new SpeechRecognitionEngine(new CultureInfo("en-US", true));
// ...
1
vote
1answer
372 views
SAPI 5.3 speech to Text
I am looking for a basic example for Speech to Text using the SAPI 5.3 on VC++.
Can you please provide with a sample program?
1
vote
2answers
200 views
How to install SAPI in visual studio for C#?
I want to work with SAPI and downloaded the speechsdk51msm.exe. When I try to run it its open through WinZip, and extracted the files. I got msm extension files after extracting.
I don't know how to ...
1
vote
1answer
485 views
How to create a custom sapi voice for tts
I am working on a project which I need to create a custom voice engine for my application. I have seen something like the TTS Builder, but is there someone who understands how applications such as the ...
1
vote
1answer
79 views
Hang problem in webControl and SAPI in C# [closed]
Possible Duplicate:
Synchronization Problem for SAPI or (text to speech ) … C#
I've made a browser with WebControl. Now I want to read and highlight the text. So I split then ...
1
vote
1answer
520 views
Speech Recognition with SAPI: Custom Language Support through phenomes
I have a text that I have transcribed from text to phenomes
I want now to modify or create a custom grammar XML which will define the pronounciation of the words with international phenomes and use ...
1
vote
0answers
252 views
Speech training files and registry locations
I have a speech project that requires acoustic training to be done in code. I a successfully able to create training files with transcripts and their associated registry entries under Windows 7 using ...
1
vote
3answers
657 views
Localizing SAPI Text-To-Speech to spanish
I have managed to use SAPI Text-To-Speech in Delphi/Lazarus by using the following code:
procedure TForm1.Button1Click(Sender: TObject);
var
SpVoice: Variant;
begin
SpVoice := ...
1
vote
1answer
249 views
using voice tokens to swap voices with SAPI 5.1 text to speech
I am writing an application that has two characters in it and each should use a different text-to-speech voice. We're still using Windows XP so we're restricted to SAPI 5.1.
What I am trying to do is ...
1
vote
1answer
109 views
Change dictation topic on the fly
I am scoping out a custom dictation application to be built using MS SAPI 5. I would like to be able to change the grammar (topic) of dictation dynamically based on what is being recognized. For ...
1
vote
2answers
379 views
C# program exception
This program is throwing an exception, how can I resolve this?
Exception is "Speech Recognition is not available on this system. SAPI and Speech Recognition engines cannot be found".
public ...
1
vote
2answers
218 views
Can i use SAPI directly to convert Speech to Text from stored audio in real-time
What i really want to achieve is this-->
Suppose i play an audio file(using my application) which can either be streamed from the internet/or accessed directly from the local storage.
Now i want to ...
1
vote
2answers
1k views
Microsoft speech api 5.1 GetVoices returns voices that don't exist on Windows 7
I'm migrating from XP to Windows 7 64 bit. My app which I compiled on my XP machine works properly on XP. However when I run the exe on my W7 machine, the list of voices returned by GetVoices is as ...