資源簡介
C#使用微軟TTS語音引擎實現(xiàn)文字轉(zhuǎn)語音示例
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
using?SpeechLib;
namespace?TTSTest
{
????public?partial?class?Form1?:?Form
????{
????????public?Form1()
????????{
????????????InitializeComponent();
????????}
????????private?void?speekBtn_Click(object?sender?EventArgs?e)
????????{
????????????SpVoice?voice?=?new?SpVoice();
????????????voice.Rate?=?0;?//語速[-1010]
????????????voice.Volume?=?100;?//音量[0100]
????????????voice.Voice?=?voice.GetVoices().Item(0);?//語音庫
????????????voice.Speak(txtContent.Text.ToString());
????????}
????????private?void?btnSave_Click(object?sender?EventArgs?e)
????????{
????????????SpFileStream?stream?=?new?SpFileStream();
????????????stream.Open(@“C:\voice.wav“?SpeechStreamFileMode.SSFMCreateForWrite?false);
????????????SpVoice?voice?=?new?SpVoice();
????????????voice.AudioOutputStream
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????1211??2017-05-24?22:13??TTSTest\TTSTest\Form1.cs
?????文件???????3821??2017-05-24?22:13??TTSTest\TTSTest\Form1.Designer.cs
?????文件???????5817??2017-05-24?22:13??TTSTest\TTSTest\Form1.resx
?????文件???????2164??2017-05-24?21:37??TTSTest\TTSTest\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
?????文件???????6293??2017-05-24?22:13??TTSTest\TTSTest\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????文件????????160??2017-05-24?22:13??TTSTest\TTSTest\obj\x86\Debug\GenerateResource.read.1.tlog
?????文件????????418??2017-05-24?22:13??TTSTest\TTSTest\obj\x86\Debug\GenerateResource.write.1.tlog
?????文件?????165376??2017-05-24?21:37??TTSTest\TTSTest\obj\x86\Debug\Interop.SpeechLib.dll
?????文件????????630??2017-05-24?22:13??TTSTest\TTSTest\obj\x86\Debug\TTSTest.csproj.FileListAbsolute.txt
?????文件????????744??2017-05-24?21:37??TTSTest\TTSTest\obj\x86\Debug\TTSTest.csproj.ResolveComReference.cache
?????文件??????13824??2017-05-24?22:13??TTSTest\TTSTest\obj\x86\Debug\TTSTest.exe
?????文件????????180??2017-05-24?22:13??TTSTest\TTSTest\obj\x86\Debug\TTSTest.Form1.resources
?????文件??????22016??2017-05-24?22:13??TTSTest\TTSTest\obj\x86\Debug\TTSTest.pdb
?????文件????????180??2017-05-24?21:40??TTSTest\TTSTest\obj\x86\Debug\TTSTest.Properties.Resources.resources
?????文件????????488??2017-05-24?21:37??TTSTest\TTSTest\Program.cs
?????文件???????1364??2017-05-24?21:37??TTSTest\TTSTest\Properties\AssemblyInfo.cs
?????文件???????2862??2017-05-24?21:37??TTSTest\TTSTest\Properties\Resources.Designer.cs
?????文件???????5612??2017-05-24?21:37??TTSTest\TTSTest\Properties\Resources.resx
?????文件???????1090??2017-05-24?21:37??TTSTest\TTSTest\Properties\Settings.Designer.cs
?????文件????????249??2017-05-24?21:37??TTSTest\TTSTest\Properties\Settings.settings
?????文件???????4048??2017-05-24?21:40??TTSTest\TTSTest\TTSTest.csproj
?????文件????????863??2017-05-24?21:37??TTSTest\TTSTest.sln
????..A..H.?????18432??2017-05-24?22:13??TTSTest\TTSTest.suo
?????目錄??????????0??2017-05-24?21:37??TTSTest\TTSTest\obj\x86\Debug\TempPE
?????目錄??????????0??2017-05-24?22:14??TTSTest\TTSTest\obj\x86\Debug
?????目錄??????????0??2017-06-22?18:00??TTSTest\TTSTest\bin\Debug
?????目錄??????????0??2017-05-24?21:37??TTSTest\TTSTest\obj\x86
?????目錄??????????0??2017-05-24?22:14??TTSTest\TTSTest\bin
?????目錄??????????0??2017-05-24?22:14??TTSTest\TTSTest\obj
?????目錄??????????0??2017-05-24?22:14??TTSTest\TTSTest\Properties
............此處省略5個文件信息
評論
共有 條評論