खोज…


परिचय

System.Speech असेंबली में, Microsoft ने स्पीच सिंथेसिस , टेक्स्ट को बोले गए शब्दों में बदलने की क्षमता को जोड़ा है।

वाक्य - विन्यास

  1. स्पीच सिंथाइज़र भाषण

    speechSynthesizerObject.Speak ("बोलने के लिए पाठ");

भाषण संश्लेषण उदाहरण - हैलो वर्ल्ड

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