Ricerca…


introduzione

Nell'assemblaggio System.Speech , Microsoft ha aggiunto Speech Synthesis , la capacità di trasformare il testo in parole pronunciate.

Sintassi

  1. SpeechSynthesizer speechSynthesizerObject = new SpeechSynthesizer ();

    speechSynthesizerObject.Speak ("Text to Speak");

Esempio di sintesi vocale - Hello World

using System;
using System.Speech.Synthesis;
using System.Windows;

namespace Stackoverflow.SpeechSynthesisExample
{
        public partial class SpeechSynthesisSample : Window
        {
                public SpeechSynthesisSample()
                {
                        InitializeComponent();
                        SpeechSynthesizer speechSynthesizer = new SpeechSynthesizer();
                        speechSynthesizer.Speak("Hello, world!");
                }
        }
}


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow