2013年10月29日 星期二

Windows 8 中文文字轉語音

1. SpeechPlatformRuntime_x64 不須安裝。
2. Install x64_MicrosoftSpeechPlatformSDK
3. Install MSSpeech_TTS_zh-TW_HanHan (MS 沒放在網上)
4. Install MSSpeech_SR_zh-TW_TELE (預期中文語音辨識應該OK!)
5. Test program:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SpeechLib;

namespace SpeechEx2
{
    class Program
    {
        static void Main(string[] args)
        {
            SpVoice Sp = new SpVoice();
            Sp.Speak("This is a test.  測試文字轉語音", SpeechVoiceSpeakFlags.SVSFDefault);
        }
    }
}
6. OK.

沒有留言:

張貼留言