关于tts语音引擎的使用方法!很多软件具有英文发音和朗读功能,它们都使用了MSTTS(Microsoft TEXT To Speech)技术。微软遵照COM的标准,提供了一套Speech API来对MSTTS进行编程。要在程序中使用这套API,必须确保系统已经安装了MSTTS和Spchapi软件包。 Speech API可以作为类型库引用到Delphi中,方法是:打开Project选单下的Import Type Litrary,点击“Add”加入Windows\Speech目录下的Vtxauto.tlb文件,在Delphi的Import目录中就会生成VTxtAuto—TLB.pas文件,其中定义了VTxtAuto—TLB单元,把它加到Uses成员中来。设计如图2所示的窗口,定义全局变量: var VoTxt:IVTxtAuto 然后在Form的OnCreate事件中加入: VoTxt:=CoVTxtAuto_.Create VoTxt.Register(′′,′Speech Test′) {注册} “Read”按钮代码为: VoTxt.Speak(Memo1.Lines.TEXT,10) {朗读} “Stop”按钮代码为: VoTxt.StopSpeaking {停止朗读} 至此,应用程序已具有朗读功能,10表示使用普通语气。借住VoTxt的属性和方法,我们还可以控制阅读速度和语气,实现暂停、跳句等功能,Speech API编程就这么简单。
上传时间: 2014-01-21
上传用户:13681659100
这用java语言模拟一个银行的操作系统,main-class:run 图形界面模式:加参数-graphic 文字模式:加参数-TEXT Client.txt存放客户信息 Compte.txt存放账户信息 Operation.txt账号使用信息 这个版本是法语版的
上传时间: 2015-05-09
上传用户:hzy5825468
BCB 编写的一些简单函数用于SQL的扩展存储过程. -检查文件是否存在Select dbo.FileExist( c:\boot.ini ) --删除文件Select dbo.FileDelete( C:\X.txt ) --服务状态Select dbo.ServerStat( awhost32 ,1) --建立目录Select dbo.MKDIR( C:\Test\test ,1) --文件复制Select dbo.FileCopy( C:\boot.ini , c:\Boot\YYY.ini ,1) --删除目录Select dbo.RDDIR( C:\TEXT ,1) --锁定计算机Select dbo.LockPc() --结束程序Select dbo.KillPorg( Notepad.exe ) --执行程序Select dbo.StartPorg( Notepad.exe ) --得到IP地址Select dbo.GetIP() --分解字符Select dbo.TEXTPart( 123*456*789 , * ,0) QQ:254082939 Email:haihong5995037@163.com
标签: Select FileDelete FileExist dbo
上传时间: 2014-01-22
上传用户:1109003457
The SMS-Receiver program is intended for circuit phone incoming SMS receiving. The messages are writed in log file SMS_Receiver.log & cleared from phone then. There s a log strings format: MM/DD/YYYY HH:MM PhoneNo, Message TEXT (Date) (Time)
标签: SMS-Receiver The receiving intended
上传时间: 2015-06-01
上传用户:zl5712176
遗传求解求解一元二次方程的解源程序(下载点击GAdownload.c) 说明: 1 popu变量表示群体规模 2 L变量表示染色体的长度 3 pc,pm变量分别代表是交叉概率和变异概率 4 gen是迭代的代数 4 chromosome是一个全局的二维数组,里面存放的是个体的编码 5 程序最后的执行结果输出到了TEXT.txt文本文件中
标签: GAdownload popu 变量 概率
上传时间: 2015-06-03
上传用户:youth25
A C++ N-grams Package 2.0 This is a simple C++ n-grams package that includes a header, the corresponding cpp file, and a sample driver program. It is a natural language processing tool for creating n-gram profiles for TEXT documents. The details on usage is documented in the header right above each public function defined. This package is based on Dr. Vlado Keselj s Perl package TEXT::Ngrams which is available in CPAN.
标签: includes correspo N-grams Package
上传时间: 2015-06-12
上传用户:wfl_yy
IDL开发源码,可以使用TEXT文档文件进行编写,运行要在IDL环境中。作用:添加影像
上传时间: 2013-12-18
上传用户:lingzhichao
The Art of C++ by Herbert Schildt ISBN:0072255129 McGraw-Hill/Osborne © 2004 The author of this TEXT applies C++ to a wide variety of high-powered, practical applications, each focusing on a different aspect of the language. Examples range from a garbage collector subsystem and a thread control panel to AI-based searches and more.
标签: McGraw-Hill 0072255129 The Herbert
上传时间: 2015-07-18
上传用户:lx9076
1)Learn more about the capabilities in Quartus: 2)Learn to use different design entry techniques 2)Design entry methods available within Quartus TEXT editor,Block diagram/schematic file editor, Quartus interface with design entry/synthesis tools from Exemplar, Synopsys, Synplicity and Viewlogic
标签: Learn capabilities techniques different
上传时间: 2014-01-18
上传用户:yxgi5
Turbo C - (C) Copyright 1987, 1988 by Borland International */ #define S_IREAD 0x0100 /* from SYS\STAT.H */ #define S_IWRITE 0x0080 /* from SYS\STAT.H */ #define TRUE 1 #define FALSE 0 #define MSGHEADER "MICROCALC - A Turbo C Demonstration Program" #define MSGKEYPRESS "Press any key to continue." #define MSGCOMMAND "Press / for the list of commands" #define MSGMEMORY "Memory Available:" #define MSGERROR "ERROR" 部分说明 #define MSGLOMEM "Not enough memory to allocate cell." #define MSGEMPTY "Empty" #define MSGTEXT "TEXT"
标签: International Copyright Borland S_IREAD
上传时间: 2013-12-26
上传用户:llandlu