수색…
소개
System.Speech
어셈블리에서 Microsoft는 텍스트를 음성 단어로 변환하는 음성 합성 기능을 추가했습니다.
통사론
SpeechSynthesizer speechSynthesizerObject = 새로운 SpeechSynthesizer ();
speechSynthesizerObject.Speak ( "Text to Speak");
음성 합성 예 - 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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow