Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
53 views

I am trying to play audio with gender=male and I failed. Then I maintained the register as follow. Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Speech\Voices\Tokens\...
Ice Wind's user avatar
0 votes
2 answers
190 views

I want to convert a given text to an audio file in a c++ console application. I am developing the application in visual studio on windows 10. I found a related code on Microsoft's learn challenge ...
Tansel Tunc's user avatar
1 vote
0 answers
65 views

I am developing a c++ DLL that is used by a c# app via interop. The DLL's purpose is to train the "Default" speech recognition profile. The c# app only sends Training Text and receives ...
Slip's user avatar
  • 43
0 votes
0 answers
278 views

My company has a Delphi app that has been using SAPI to render wav files for over 20 years; recently, a customer asked why our voice selection list only has Microsoft Mike and Microsoft Zira when the ...
Brad Kilmer's user avatar
0 votes
1 answer
84 views

I'm trying to create a simple application to process received BLE data with Delphi10: -Win10 -Delphi 11 -import SAPI from "onecore" directory(I only found Chinese language engine under this ...
Xiao Jack's user avatar
1 vote
0 answers
936 views

Is it possible to use a voice model and then create a custom voice out of it to be used in SpeechSynthesis api? I have a tts app using that api, and I want to add custom voices. I already tried to ...
InFamous. Emperor Cloud's user avatar
2 votes
0 answers
196 views

I have a C++ program using Qt 6.5.2. I'm trying to use its QTextToSpeech class on Windows 11. It works fine when I set the engine to "sapi", but when I set it to the higher quality "...
Michael Ferrier's user avatar
0 votes
1 answer
295 views

I'm trying to recreate daisy bell with vbs using sapi, but I have a portion of the song that's unpleasantly jarring: yellow.Rate = 6 yellow.Speak "<pitch middle = '-10'/> Give." yellow....
TroubledSeas's user avatar
0 votes
1 answer
96 views

I am trying to implement a TTS Engine using SAPI 5 on Windows. To make it simple, assume that I have a model trained which converts text to an mp3 file. I need to stream/load this mp3 data to the ...
why stuff works's user avatar
0 votes
1 answer
97 views

I had SAPI up and running for quite some time and worked quite well. At some point (well after upgrade to Win11) it stopped working, and throwing errors. Currently I got it back up to speak, but it is ...
Wolfgang Bures's user avatar
0 votes
1 answer
63 views

I created a void named "bot" to get text and speak it using a variable named "text". Like this, void bot(string text). To use this void bot("Hello") or bot("Hi, my ...
MaxMouse's user avatar
0 votes
1 answer
194 views

I'm using Windows.Media.SpeechSynthesis (C++/WinRT) to convert text to audio file. Previously I was using SAPI where was possible to set Audio Format when binding to a file via SPBindToFile(...) ...
Appolon Sharov's user avatar
0 votes
2 answers
218 views

I'm using the Microsoft's Speech Application Programming Interface (SAPI) to enable speech in my app. However, when I try to stop asynchronous speech tasks, they stop, but after a second. In .NET ...
Mohamed Noordin's user avatar
0 votes
1 answer
68 views

For example: #include <sapi.h> #include <atlbase.h> #include <atlstr.h> #pragma warning (suppress: 4996) #include <sphelper.h> int main(int argc, char* argv[]) { ISpVoice* ...
Xuxinyi's user avatar
  • 53
2 votes
2 answers
896 views

Windows has API for speech recognition, it also provides system apps that perform speech recognition and execute recognised command. Is there a way/API to send commands programmatically? Text and ...
Paul Nadolinskyi's user avatar
0 votes
1 answer
362 views

Hi I'm using pyttsx3 in python which uses the Microsoft SDK SAPI5.1 text to speech synthesizer to generate audio from text. Problem that I'm facing is that the the speed of the speech it generate is ...
Fchpro01's user avatar
1 vote
0 answers
316 views

I just wnat to make an app that tts(convert text to speech) text so i found Sapi voice is a good lib for this. It works well when I run the 'start_speacking' function in a thread. BUT, when I pause ...
Za Ion's user avatar
  • 11
0 votes
0 answers
124 views

HiI'm trying to create a "Speech to text" app that can transcribe any audio/video file. I've created an app based on this post and it works great for WAV files. But if I use an MP3 file, the ...
Sam's user avatar
  • 2,562
5 votes
2 answers
13k views

I am front end developer and recently hearing these new terms (new to me). I searched Google for explanation but got more confused with multiple full forms. SAPI: System API/ Server API PAPI: Process ...
Souvik Banerjee's user avatar
1 vote
1 answer
205 views

I'm working on a desktop application on Windows using Windows API. Application sends notifications and notifications must be spoken in Turkish language. What's the code for Turkish language that ...
Caner Kurt's user avatar
0 votes
1 answer
720 views

Hi I want to use Microsoft Speech API SAPI with python 3.7. import win32com.client speaker = win32com.client.Dispatch("SAPI.SpVoice") speaker.Speak("Hello, it works!&...
MacMarde's user avatar
  • 149
0 votes
0 answers
119 views

I'm working with MS SAPI in Delphi7. My goal is: speak list of phrases into memory get number of bytes, occupied by each phrase (for creating SRT subtitles) output memory data to WAV file. All works ...
user1581016's user avatar
0 votes
1 answer
101 views

I am writing a DLL that allows a program to use Text To Speech through SAPI. Here is what I have: public static double TestExport(string vSay) { SpeechSynthesizer synth = new SpeechSynthesizer(); ...
Eric Blackburn's user avatar
0 votes
0 answers
209 views

I'm trying to make a TTS DLL using SAPI. Passing text to be spoken is easy enough, but I'm having a problem. My secondary program has no way of knowing when TTS is done if I use ASYNC. I need to use ...
Eric Blackburn's user avatar
1 vote
2 answers
486 views

I'm implementing an ISpTTSEngine for the Microsoft Speech API (SAPI). I'd like for this voice to annunciate just like a typical TTS voice. Rather than write my own speech synthesizer, I'd like to ...
Mike's user avatar
  • 133
0 votes
1 answer
399 views

So for this let's just use the test program provided by Microsoft to keep it simple. Before running it you will need to go to manage NuGet package for project and add speech.synthesis. But after doing ...
Eric Blackburn's user avatar
3 votes
0 answers
422 views

For my project I use pyenchant library for spell checking and win32com.client.dispatch to call SAPI.SpVoice for automatic voiceovers. I have some Speech2Go packages installed and all worked fine until ...
Megan Caithlyn's user avatar
0 votes
0 answers
136 views

I have a working example using the Windows text-to-speech API, but the problem is it freezes when given a large amount of text. To solve this I want to make the process asynchronous. I've found the ...
benui's user avatar
  • 6,878
0 votes
2 answers
351 views

My code: import pyttsx3 #sapi5 is default windows voice api engine = pyttsx3.init('sapi5') voices = engine.getProperty('voices') print(voices[1].id) engine.setProperty('voice', voices[0].id) def ...
sub0d33p's user avatar
0 votes
1 answer
322 views

I am looking for the .pdb files associated with Windows speech API 5. I've tried using the Microsoft symbol server at https://msdl.microsoft.com/download/symbols but it does not download the SAPI pdbs,...
benui's user avatar
  • 6,878
2 votes
1 answer
823 views

I have used this Stack Overflow Answer to iterate through all installed Windows text-to-speech voices, but I am having a hard time extracting the attributes of each one. e.g. gender, language, name ...
benui's user avatar
  • 6,878
0 votes
0 answers
109 views

I'm developing a new Delphi app which uses the voice to text dictation as its main data input, the required data is specifically related to medical terms, for example the user is needed to enter any ...
Has's user avatar
  • 13
0 votes
1 answer
242 views

I have Windows 7 with several Ivona voices (harposoftware.com) installed. I have an app that starts SpVoice from Sapi and makes it read a text. Now I also have a piece of text that I'd like to turn ...
Max Smith's user avatar
  • 405
2 votes
2 answers
17k views

So I have made a personal voice assistant in Python and it speaks currently with Microsoft David. There are some prebuilt voices to microsoft and you can add some more from settings and speech ...
Frosty Boi FN's user avatar
0 votes
1 answer
142 views

This use to work on Windows 10, but now it doesn't, and I can't find how to correct the code to make it work. void __fastcall TForm1::ComboBox1Change(TObject *Sender) { ISpeechObjectTokenPtr token; ...
Spider's user avatar
  • 1
0 votes
1 answer
306 views

A lot of users for my UWP app are hitting System.IO.FileNotFoundException in the Windows.Media.SpeechSynthesis.SpeechSynthesizer..ctor() The code is calling the default constructor of Windows.Media....
ac-lap's user avatar
  • 1,653
0 votes
1 answer
298 views

I have a windows service generating TTS audio using Microsoft David Desktop voice on Windows Server 2012. When moving it to Windows Server 2016, it returns error 0x80045040. My windows service logon ...
Thai Nguyen's user avatar
1 vote
0 answers
397 views

I am building a voice assistant using Microsoft SAPI in C++ . I used the code from Cyril Leroux's answer here But during compilation, it throws this error: C:\Program Files (x86)\Microsoft Speech SDK ...
Sid's user avatar
  • 2,189
2 votes
1 answer
1k views

I've followed this tutorial, which shows how to install AWS Polly voices on Windows 10 for use with SAPI applications. However, I cannot get any additional voices to appear in the Windows 10 voices ...
JTerry's user avatar
  • 139
10 votes
2 answers
13k views

I would like to be able to select an alternative voice for my Text-To-Speech output. I am using the ComObject SAPI.SPVoice but I am finding that I cannot change the actual voice used. (BTW - I am ...
hugmys0ul's user avatar
  • 153
0 votes
1 answer
165 views

I want to create a program, that automaticly reads all start-arguments. This is what I end with after some hours of researching and debugging but it still not working. (I'm not very experienced in ...
The_Legend_of_xD's user avatar
2 votes
0 answers
223 views

There is a similar question that already exists here, but the solution does not apply to my situation, and they ultimately never solved the problem anyways. So, as the title suggests, the recognizer....
Roxanne's user avatar
  • 47
0 votes
1 answer
304 views

Basically I am trying to make a program of virtual assistant in my windows 10 laptop but when I run the below script I found a very big error. and I am confused so i want a help for below code. I am ...
3hanu sing's user avatar
4 votes
2 answers
2k views

Windows 10. I've installed the Japanese TTS voices in the Settings. Now, when I use voice enumeration in Speech API 5.4 OneCore (not in 5.4 proper though), I get 6 voices: David Zira Ayumi Haruka Mark ...
Seva Alekseyev's user avatar
0 votes
1 answer
892 views

Trying to use MS Speech API v11 with a Japanese engine (MS Haruka) in Delphi 10.3. I have a sample app with a form and a button. The click handler goes: uses SpeechLib11_TLB; // Imported from "...
Seva Alekseyev's user avatar
1 vote
1 answer
3k views

When we are thinking to apply API caching for a general system with 3-layer API architecture (ClientApp --> EAPI --> PAPI --> SAPI --> Backend system). Is that any general practice about which API ...
hejiaming007's user avatar
1 vote
2 answers
3k views

So all I want in life is to have a program where I can say "Hey Computer" and it responds with "Hello". So I set myself upon the task and after some research produced the code below yet whenever I try ...
diaeros's user avatar
  • 29
1 vote
0 answers
678 views

I am getting an error "System.Runtime.InteropServices.COMException: 'Exception from HRESULT: 0x80045039'", when I use GetVoices method my code: Private Sub Button1_Click(sender As Object, e As ...
Muhammad Abubakr's user avatar
4 votes
1 answer
1k views

I finally have built a program to listen to the internal audio loopback using NAudio, and output recognized text. The problem is it listens, and always says, eg: Recognized text: had Recognized text: ...
NoBugs's user avatar
  • 9,348
2 votes
1 answer
1k views

I currently have several custom SAPI voices that work in SAPI-compliant applications. However, applications such as Microsoft Powerpoint use the Microsoft Speech API and the SAPI voices are not ...
SkunkSpinner's user avatar
  • 11.7k

1
2 3 4 5
9