码迷,mamicode.com
首页 > 其他好文 > 详细

可直接拿来用的文本转语音的代码

时间:2016-05-22 19:55:28      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

using DotNetSpeech;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace YLSoft.Pola.Utils.Common
{
    public class VoiceHelper
    {
        private int _volume=100;
        /// <summary>
        /// 音量(从0到100的整数)
        /// </summary>
        public int Volume
        {
            get
            {
                if (_volume < 0)
                    _volume= 0;
                else if(_volume>100)
                {
                    _volume = 100;
                }
                return _volume;
            }
            set { _volume = value; }
        }

        private int _rate=0;

        public int Rate
        {
            get { return _rate; }
            set { _rate = value; }
        }
        public  void ProduceVoice(string strContent)
        {
            DotNetSpeech.SpeechVoiceSpeakFlags SSF = DotNetSpeech.SpeechVoiceSpeakFlags.SVSFlagsAsync;
            DotNetSpeech.SpVoice vo = new SpVoiceClass();
            vo.Volume = Volume;
            vo.Rate = Rate;
            vo.Speak(strContent, SSF);
        }
    }
}

 

可直接拿来用的文本转语音的代码

标签:

原文地址:http://www.cnblogs.com/ChineseMoonGod/p/5517380.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!