Sök…
Introduktion
I
System.Speech
församlingen har Microsoft lagt till talesyntes , möjligheten att omvandla text till talade ord.
Syntax
SpeechSynthesizer speechSynthesizerObject = new SpeechSynthesizer ();
speechSynthesizerObject.Speak ("Text att tala");
Exempel på talesyntes - Hej världen
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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow