Recherche…


Introduction

Dans l'assembly System.Speech , Microsoft a ajouté la synthèse vocale , la possibilité de transformer du texte en mots parlés.

Syntaxe

  1. SpeechSynthesizer speechSynthesizerObject = new SpeechSynthesizer ();

    speechSynthesizerObject.Speak ("Texte à parler");

Exemple de synthèse vocale - Bonjour tout le monde

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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow