.net实现简单语音朗读(TTS)功能

news/2024/11/8 17:04:39/

首先,添加DotNetSpeech.dll引用,可以在这里直接下载,也可以参照这篇文章说的,在安装Speech SDK以后,在Common Files\Microsoft Shared\Speech\目录下面找到SAPI.dll,用Tlbimp.exe工具将该dll转换成.net平台下的Assembly---DotNetSpeech.dll。

然后,using DotNetSpeech;

朗读功能:

using DotNetSpeech;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using System.Speech.Synthesis;
using System.Speech;namespace MyProject
{public class ValuesController : ApiController{public SpeechSynthesizer synth; //语音合成对象GET api/<controller>//public IEnumerable<string> Get()//{//    return new string[] { "value1", "value2" };//}GET api/<controller>/5//public string Get(string cont)//{//    return cont;//}POST api/<controller>//public void Post([FromBody] string value)//{//}PUT api/<controller>/5//public void Put(int id, [FromBody] string value)//{//}DELETE api/<controller>/5//public void Delete(int id)//{//}//[HttpPost][HttpGet]public string ToCall(string cont){//调用示例:http://192.168.6.195:8081/api/values/ToCall?cont=请,刘笑笑,李秀秀,导医台领结果吧//https://localhost:44399/api/values/ToCall?cont=请,刘笑笑,李秀秀,导医台领结果吧//SpeechVoiceSpeakFlags flags = SpeechVoiceSpeakFlags.SVSFlagsAsync;//SpVoice sp = new SpVoice();sp.Voice = sp.GetVoices(" name=Microsoft Simplified Chinese ", "").Item(0);//sp.Voice = sp.GetVoices(string.Empty, string.Empty).Item(0); //0选择默认的语音,//sp.Rate = 0;//语速//sp.Volume = 100;//音量//sp.Speak(cont, flags);synth = new SpeechSynthesizer();//使用 synth 设置朗读音量 [范围 0 ~ 100]synth.Volume = 100;//使用 synth 设置朗读频率 [范围 -10 ~ 10]synth.Rate = 0;synth.SelectVoice(synth.GetInstalledVoices()[0].VoiceInfo.Name);//synth.SelectVoice("Microsoft Lili");//Voice.Speak(ggg, SpFlags);synth.SpeakAsync(cont);return "12345";}[HttpGet]public string GetAll(){return "Success";}}
}

注:SpeechVoiceSpeakFlags是语音朗读的风格; Voice中是语音类型(语言、男(女)声),有 Microsoft Simplified Chinese,Microsoft Mary(Sam,Mike)等,

也可以这样:voice.Voice = voice.GetVoices(string.Empty, string.Empty).Item(0); //0选择默认的语音,
1选择第二个语音;Rate指的是语速。

当然,你也可以在此不写,打开控制面板中的语音设置类型和语速

生成语音文件:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Speech.Synthesis;
using System.Collections.ObjectModel;
using System.Web.Configuration;
using DotNetSpeech;
using Microsoft.Win32;
using System.Windows.Forms;
using System.Threading;SpeechVoiceSpeakFlags flags = SpeechVoiceSpeakFlags.SVSFlagsAsync;SpVoice sp = new SpVoice();//sp.Voice = sp.GetVoices(" name=Microsoft Simplified Chinese ", "").Item(0);sp.Voice = sp.GetVoices(string.Empty, string.Empty).Item(0); //0选择默认的语音,sp.Rate = 0;//语速sp.Speak(strCont, flags);System.Windows.Forms.SaveFileDialog dialog = new System.Windows.Forms.SaveFileDialog();dialog.Filter = " All files (*.*)|*.*|wav files (*.wav)|*.wav ";dialog.Title = " Save to a wave file ";dialog.FilterIndex = 2;dialog.RestoreDirectory = true;if (dialog.ShowDialog() == DialogResult.OK){SpeechStreamFileMode spFileMode = SpeechStreamFileMode.SSFMCreateForWrite;SpFileStream spFileStream = new SpFileStream();spFileStream.Open(dialog.FileName, spFileMode, false);sp.AudioOutputStream = spFileStream;sp.Speak("文字转语音的内容", flags);sp.WaitUntilDone(Timeout.Infinite);spFileStream.Close();}

(在WinForm和Web中都适用)

参考:http://www.microsoft.com/china/community/program/originalarticles/TechDoc/Cnspeech.mspx

        使用语音即时校对输入内容 - 斯克迪亚 - 博客园

转载于:https://www.cnblogs.com/pfs1314/archive/2011/01/11/1932870.html


http://www.ppmy.cn/news/806277.html

相关文章

UE5文本转语音TTS插件

UE4.26版本的TTS文本转语音插件&#xff0c;同时有UE5版本 使用起来也非常简单 在文本框输入想要发音的文字 关键的语音调用 项目下载地址&#xff1a;https://download.csdn.net/download/Highning0007/87337400

android原生TTS+语音引擎 实现纯离线 免费的中英TTS

之前使用百度的语音合成 sdk做了个简单的tts&#xff0c;但是它不是真正的免费和纯离线的&#xff0c;所以在查阅相关资料后&#xff0c;使用Android的原生TTS &#xff0c;因为它不支持中文&#xff0c;需要借助其他语音引擎可实现纯离线 免费的TTS。 Android原生的TTS是不支…

利用正则表达式改善TTS听书效果

最近一直在用 TTS Server 来听书&#xff0c;这个APP的语音很厉害&#xff0c;可以设置两种不同的声音&#xff0c;分别对应【旁白】和【对话】&#xff0c;听书的时候很有感觉。 在最近的一次听书时发现&#xff0c;它用【双引号“”】来区分【对话】的。 这样&#xff0c;出…

语音合成 - TTS pyttsx3

目录 1. 简单介绍 2. 代码示例 1. 简单介绍 pyttsx3 PyPIText to Speech (TTS) library for Python 2 and 3. Works without internet connection or delay. Supports multiple TTS engines, including Sapi5, nsss, and espeak.https://pypi.org/project/pyttsx3/pyttsx3 是…

C#调用TTS语音

运行界面如下图 代码如下 卡界面运行 private void button2_Click(object sender, EventArgs e){//https://developer.aliyun.com/article/264926#:~:text%E5%8E%9F%E6%96%87%3A%20C%23%E8%AF%AD%E9%9F%B3%E6%9C%97%E8%AF%BB%E6%96%87%E6%9C%AC%20%E2%80%94%20TTS%E7%9A%84%E5…

android tts 语音合成

最近公司需求 制作语音提醒功能&#xff0c; 确保设备上又合成语音的引擎 我用的是 谷歌文字转语音引擎-google_18489_20160603.apk 注意 有些设备可能已经默认设置完成&#xff0c;可以先使用demo测试一下&#xff0c;播报失败再进行设置 设置引擎的方法如下 1、安装 谷…

tts高级编程 android,Android TTS(TextToSpeech) 使用

TTS 是什么&#xff1f; TTS 是 Text To Speech 的缩写&#xff0c;即“从文本到语音”&#xff0c;是人机对话的一部分&#xff0c;让机器能够说话。 TTS 技术对文本文件进行实时转换&#xff0c;转换时间之短可以秒计算。 TTS 不仅能帮助有视觉障碍的人阅读计算机上的信息…

edge-tts微软文本转语音库

Edge-TTS是一个Python库,比较好用&#xff0c;直接pip安装。 pip install edge-tts 输入edge-tts&#xff0c;输出提示信息&#xff0c;安装完成。 usage: edge-tts [-h] [-t TEXT] [-f FILE] [-v VOICE] [-l] [--rate RATE] [--volume VOLUME] [-O OVERLAPPING][--write-me…