Click here to Skip to main content
Licence CPOL
First Posted 17 Apr 2011
Views 13,318
Downloads 1,779
Bookmarked 31 times

Text to Speech

By | 17 Apr 2011 | Article
How to implement speech technology in our project

Introduction

Text To Speech becomes very easy in C#. We know speech technology is very useful for the blind. Now, we are going to learn how to implement speech technology in our project.

text to speak

STEPS

  1. Open Microsoft Visual Studio 2010 from Start | All Programs | Microsoft Visual Studio 2010 | Microsoft Visual Studio 2010.
  2. On the Microsoft Visual Studio Start Page, click the New Project icon.
  3. On the Microsoft Visual Studio Start Page, click the New Project icon.
  4. In C# projects Templates list, select Windows | WindowsApplication.
  5. In the Name field, enter the name “text to speak”
  6. In the upper right hand corner, ensure that version 4.0 of the .NET Framework is selected.
  7. Accept the default location and Solution Name. Click the OK button. The solution will be created.
  8. Right-click on the Text to Speak project node and select Add Reference.
  9. Under the .NET tab in the Add Reference dialog box, select System.Speech.
  10. Click the OK button.

Select a Text File

Select a text file to convert audio.selected text file display on rich text box.

private void Browse_Click(object sender, EventArgs e)
    {
        OpenFileDialog Ofg = new OpenFileDialog();

        try
        {
            Ofg.CheckFileExists = true;
            Ofg.CheckPathExists = true;
            Ofg.DefaultExt = "txt";
            Ofg.DereferenceLinks = true;
            Ofg.Filter = "Text files (*.txt)|*.txt|" +
				"RTF files (*.rtf)|*.rtf|" +
                              " +
				Works 6 and 7 (*.wps)|*.wps|" +
                              "Windows Write (*.wri)|*.wri|" +
				"WordPerfect document (*.wpd)|*.wpd";
            Ofg.Multiselect = false;
            Ofg.RestoreDirectory = true;
            Ofg.ShowHelp = true;
            Ofg.ShowReadOnly = false;
            Ofg.Title = "Select a file ";
            OpenFile.ValidateNames = true;

            if (OpenFile.ShowDialog() == DialogResult.OK)
            {
                StreamReader sr = new StreamReader(ofg.OpenFile());
                richTextBox1.Text = sr.ReadToEnd();
            }
        }
        catch
        {
            MessageBox.Show("can not open the file", "Text two speech");
        }
    }

Here, first creating object instance for OpenFileDialog.stream reader is used to read a text file.

Text to Speak

SpeakAsync method is used to speak a word. There are two properties used here; one is volume, another one is Rate. voice gender is also one of the properties. It is used to select voice gender (enum NotSet, Male, Female, Neutral). If any error occurred, message box shows error message.

private void speak_Click(object sender, EventArgs e)
{
    SpeechSynthesizer speak = new SpeechSynthesizer();

try
{
    switch (comboBox1.SelectedItem.ToString())
                {
                    case "NotSet":
                        voice.SelectVoiceByHints(VoiceGender.NotSet);
                            break;
                    case "Male":
                        voice.SelectVoiceByHints(VoiceGender.Male);
                             break;
                    case "Female":
                        voice.SelectVoiceByHints(VoiceGender.Female);
                             break;
                    case "Neturl":
                        voice.SelectVoiceByHints(VoiceGender.Neutral);
                             break;
                  }  

The above code can change voice gender. speakAsyn is an asynchronous method. It means return immediately and speak as a background process. If any error occurred, it will display on message box.

voice.Volume = trackBar1.Value;
voice.Rate = trackBar2.Value;
voice.SpeakAsync(richTextBox1.Text);  

Save Audio File

Text converted to audio stream .audio stream can save wav file format. The following steps are used to save wav file.

  1. Create object instance for Save File Dialog.
  2. Set audio stream to select file.
SaveFileDialog sfd = new SaveFileDialog();

sfd.Filter = ""wav files (*.wav)|*.wav";
sfd.Title = "Save to a wave file";
sfd.FilterIndex = 2;
sfd.RestoreDirectory = true;

if (sfd.ShowDialog() == DialogResult.OK)
{
     FileStream fs = new FileStream(sfd.FileName,FileMode.Create,FileAccess.Write);
     voice.SetOutputToWaveStream(fs);
     voice.Speak(richTextBox1.Text);
     fs.Close();
}

Points of Interest

If you want to know more about speech technology, click on this link on the Microsoft website.

History

  • 14th April, 2011: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

karthik.B.E



India India

Member



Organisation (No members)



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
AnswerCursor animation Pinmemberchprogmer23:47 3 Jun '11  
GeneralMy vote of 3 PinmemberSercanOzdemir2:22 17 May '11  
Generalsome ranting Pinmemberalxxl1:31 19 Apr '11  
GeneralIf my PC has multipul soundcards, how to specify the output to which soundcard? Pinmemberzhangzq712:29 18 Apr '11  
AnswerRe: If my PC has multipul soundcards, how to specify the output to which soundcard? Pingroupkarthik.B.E4:01 19 Apr '11  
GeneralRe: If my PC has multipul soundcards, how to specify the output to which soundcard? Pinmemberzhangzq714:14 19 Apr '11  
GeneralRe: If my PC has multipul soundcards, how to specify the output to which soundcard? Pinmemberalhambra-eidos23:39 24 Apr '11  
GeneralRe: If my PC has multipul soundcards, how to specify the output to which soundcard? PinmemberSeve652:17 26 Apr '11  
GeneralRe: If my PC has multipul soundcards, how to specify the output to which soundcard? Pinmemberzhangzq7115:38 27 Apr '11  
GeneralMy vote of 5 PinmemberBizounours22:30 17 Apr '11  
GeneralNice PinmemberToniyo Jackson20:40 17 Apr '11  
Generalhi Pinmembersandeepparekh17:48 17 Apr '11  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 17 Apr 2011
Article Copyright 2011 by karthik.B.E
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid