Click here to Skip to main content
15,899,475 members
Everything / TTS

TTS

TTS

Great Reads

by Ali Robot
How to implement a text-to-speech (TTS) application in C# using the System.Speech.Synthesis namespace

Latest Articles

by Ali Robot
How to implement a text-to-speech (TTS) application in C# using the System.Speech.Synthesis namespace

All Articles

Sort by Score

TTS 

17 Apr 2020 by Dave Kreskowiak
The voice is generated by an Azure AI service. They are not "voice packs" you can download and install. In order to use that speech, you have to use the Text to Speech | Microsoft Azure[^] service.
23 Feb 2013 by Brendaleeleonard
I can't get voice command or any voice recognition to work on my irulu tablet what app do I use so error quit saying google tts engine stopped please help
11 Sep 2013 by ketan italiya
Following are some sdk that will help youhttp://www.ispeech.org/apihttp://www.lumenvox.com/products/speech_engine/http://en.wikipedia.org/wiki/Microsoft_Speech_APICheck this thread alsohttp://www.dreamincode.net/forums/topic/75990-convert-speech-to-text-and-vice-versa-in-c%23net/
29 Nov 2014 by Me is Needer
hello every one.i have made a simple program which read a text (TTS- text to speech)by whith defualt voice which is Microsoft Anne, then i download SDK 5.1 to add new voices. but the added voices is not clear and not activated in c#code to read.help me how can i add new voices , please ??
16 Jul 2015 by Abhishek Pant
C# Speech to Text[^]Google[^]
16 Jul 2015 by Dharmesh .S. Patil
There is very good articles available in it:1)Speech recognition, speech to text, text to speech, and speech synthesis in C#[^]2)C# Speech to Text[^]3)How to implement voice recognition in C# using speech-to-text[^]I hope this articles will help you :)
10 Aug 2015 by Roland gr
HiWe have been trying to get Nuance Vocalizer Expressive into our VB.NET project, but we seem to be having trouble with this. Having contacted Nuance support, we were informed that we will have to create a wrapper to do this and that they don't have examples of this. I am completely...
10 Aug 2015 by Andy Lanng
Developer documentation for Nuance Vocalizer[^]This needs a good long study which I won't do, but I get the need for the wrapper class.The vocalizer tts is a suite of services that need to be running on your network (or server). You will have an api that will interact with these...
13 Mar 2016 by Member 12313850
Hi all,I would like to add some more TTS voices to android app via one other which I made in Unity Engine. I would like to get a guidance for this task. Preferable language would be C#Thanks in advance.What I have tried:Am new to this. Am not sure where to start.
22 Dec 2016 by Member 12918629
I've been trying to find a good TTS that speaks in Chinese. But I've been encountering problems with pyttsx or tropo I've tried:What I have tried:pyttsx code:# -*- coding: utf-8 -*-#!/usr/bin/env python3import pyttsxengine =...
22 Nov 2017 by Rick York
Did you read this ? https://github.com/espeak-ng/espeak-ng/blob/master/docs/add_language.md[^]
17 Apr 2020 by john1990_1
I can't see the voices that are in my new Edge (e.g. Jessa, Priya) in my TTS program. What I have tried: public static List globalVoicesObjectsList = new List(); private void...
17 Jul 2021 by Badar Ismail
So my application is an Image to text and text-to-speech app. The idea is to scan text from any source and it is read out to the user. The basic functionality of the app is working, when I click on "Capture Image" on the main screen, it opens the...
16 Mar 2023 by Ali Robot
How to implement a text-to-speech (TTS) application in C# using the System.Speech.Synthesis namespace
11 Sep 2013 by pradip2609
ReferText to Speech[^]
11 Sep 2013 by TheUltimateDebugger
check this articleSpeech recognition, speech to text, text to speech, and speech synthesis in C#[^]
11 Sep 2013 by Member 10266660
Hi i am developing a course training application in which i need to convert displayed text to audio.therefore i need to know how can i do this what options do i have ?Thanks.
20 May 2015 by Maheswaran_S
http://www.c-sharpcorner.com/UploadFile/0c1bb2/convert-text-to-speech-in-men-and-women-voice-using-Asp-Net3/[^]
16 Jul 2015 by Coder1999
Hello. Is there a way to convert my speech to text? I already know how to do text to speech but it would be great if I could just speak and the computer automatically turned my speech into text on the screen. For the moment I just want it to turn my speech into text in a Message Box in Visual...
19 Nov 2013 by srinivaspitla66
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Speech;using System.Speech.Synthesis;namespace ConvertTextToMp3{ public...
17 Jul 2015 by Dharmesh .S. Patil
Try this One Convert audio file to text:-Using System.Speechpublic class MyRecognizer { public string ReadAudio() { SpeechRecognitionEngine sre = new SpeechRecognitionEngine(); Grammar gr = new DictationGrammar(); sre.LoadGrammar(gr); ...
22 Nov 2017 by Member 13376650
I want to pass a string to espeak-ng and it reads my string by sound! What I have tried: I searched and find this program and did a little modification to change it to English from Italian, but didn't work! #include #include #include ...