unity文字转语音

untiy版本5.3.4 亲测有效

下载DLL:

Interop.SpeechLib.dll;  sapi.dll 

示例代码:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using SpeechLib;
public class ToAudio : MonoBehaviour {

	// Use this for initialization
	void Start () {
        SpVoice voice = new SpVoice();
        voice.Voice = voice.GetVoices(string.Empty, string.Empty).Item(0);
        voice.Speak("hello world");
        //voice.Speak("动物世界》由上海儒意影视制作有限公司、上海火龙果影视制作有限公司、北京光线影业有限公司联合出品,由韩延执导,由李易峰领衔主演、迈克尔·道格拉斯特邀主演、周冬雨特别出演的动作冒险类电影。该片改编自日本漫画家福本伸行的作品《赌博默示录》,讲述了郑开司因偿还借款,参加一场游轮上的神秘游戏并生存下来的故事。该片于2018年6月29日在中国内地、美国、加拿大、英国、德国、奥地利等地同步公映");
	}
	
	// Update is called once per frame
	void Update () {
		
	}
}

untiy2017.3.1 能够转成语音但是有个错误





猜你喜欢

转载自blog.csdn.net/baidu_35080512/article/details/80993846