Welcome![Sign In][Sign Up]
Location:
Search - Microsoft Speech A

Search list

[Speech/Voice recognition/combinesapitutorial00

Description: 一个国外人开发的语音识别的示例代码,使用了微软的speech API.-a foreign person development of the Speech Recognition sample code and the use of the Microsoft speech API.
Platform: | Size: 23218 | Author: szg | Hits:

[Other resourcespeachcontrol

Description: 基于微软的语音控制开发应用,可以控制多个程序 原理是模拟键盘的输入指令-based on the Microsoft Speech Application development control will be able to control a number of procedures principle is simulated keyboard input Directive
Platform: | Size: 199394 | Author: zbf661 | Hits:

[Other resourcespeachc

Description: 基于微软的语音控制开发应用,可以控制多个程序 原理是模拟键盘的输入指令-based on the Microsoft Speech Application development control will be able to control a number of procedures principle is simulated keyboard input Directive
Platform: | Size: 199394 | Author: zbf661 | Hits:

[Speech/Voice recognition/combineTestTTS_UseSapi

Description: 一段测试TTS发音引擎是否安装成功的代码,主要使用微软语音开发包提供的Sapi进行编程-a test engine TTS pronunciation successfully installed the code, primarily use Microsoft Speech development kits for the Sapi Programming
Platform: | Size: 27282 | Author: Lin.Kenry | Hits:

[OtherStudyEnglish

Description: 一般常用的英语背诵软件都是以单词为主,不能很好的理解英语句子的结构,而\"英语句子通\"能帮你实现整句的背诵,而且有整句的即时语音,中国人学英语往往注重背单词,而忽略了句子,往往达不到说一口流利英语的效, \"英语句子通\"的出现弥补了这个空白。 附了NewConcept第一册的部分句子(mdb数据库形式,不加密),可以自己添加。 软件要求:window系列平台,微软语音引擎(如装了金山词霸就可以了) 需vb6运行库,ado引擎。 注:附全部vb源代码!!! -commonly used software to memorize English words are based not well understood English sentence structure, "English sentence -" can help you achieve recitation of sentence, but the sentence instant voice, the Chinese people tend to focus on learning English words back, while ignoring the sentence, often fail Fluent in English, said the effect, "English sentence links" can make up this gap. A list of NewConcept the first part of the sentence (mdb database form and encryption), it will add its own. Software requirements : window Series platform, Microsoft Speech engine (such as installing a free email can be a) need VB6 runtime, ado engine. Note : A full vb source code! ! !
Platform: | Size: 43520 | Author: 咖啡茶 | Hits:

[Speech/Voice recognition/combineagentnet

Description: 一个通过语音控制电脑动作的程序,使用到了微软speech sdk.在微软智能代理(Agent)技术上,整合了语音合成和语音识别技术.-A computer through voice control action procedures, the use of the Microsoft speech sdk. In Microsoft Agent (Agent) technology, the integration of speech synthesis and voice recognition technology.
Platform: | Size: 406528 | Author: zyw | Hits:

[OtherStudyEnglish

Description: 一般常用的英语背诵软件都是以单词为主,不能很好的理解英语句子的结构,而"英语句子通"能帮你实现整句的背诵,而且有整句的即时语音,中国人学英语往往注重背单词,而忽略了句子,往往达不到说一口流利英语的效, "英语句子通"的出现弥补了这个空白。 附了NewConcept第一册的部分句子(mdb数据库形式,不加密),可以自己添加。 软件要求:window系列平台,微软语音引擎(如装了金山词霸就可以了) 需vb6运行库,ado引擎。 注:附全部vb源代码!!! -commonly used software to memorize English words are based not well understood English sentence structure, "English sentence-" can help you achieve recitation of sentence, but the sentence instant voice, the Chinese people tend to focus on learning English words back, while ignoring the sentence, often fail Fluent in English, said the effect, "English sentence links" can make up this gap. A list of NewConcept the first part of the sentence (mdb database form and encryption), it will add its own. Software requirements : window Series platform, Microsoft Speech engine (such as installing a free email can be a) need VB6 runtime, ado engine. Note : A full vb source code! ! !
Platform: | Size: 43008 | Author: 咖啡茶 | Hits:

[AI-NN-PR关于tts语音引擎的使用方法

Description: 关于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编程就这么简单。 -TTS voice on the use of the engine! Many software with English pronunciation and reading aloud function, they have used MSTTS (Microsoft Text To Speech) technology. Microsoft COM comply with the standards and provide a set of Speech API to right MSTTS program. The procedure to use this API, we must ensure that the system has been installed and Spchapi MSTTS package. Speech API can be used as a type library to Delphi, is : Open Project menu under the Import Type Litrary, click on the "Add" to join Windows \ directory under the Speech Vtxauto.tlb documents in the Delphi Import directory will generate VTxtAuto- TLB.pas document, which will just a VTxtAuto- TLB units, it added Uses members to China. Figure 2 shows the design of windows, the definition of global variables : var VoTx
Platform: | Size: 7168 | Author: 章称 | Hits:

[Multimedia Develop2005112914141886886

Description: 现今市面上流行的一些英语学习软件,在广告词上经常说自己使用了国际顶尖的全程语音TTS技术,能进行整段英文的流利朗 读,并能自由调节朗读的速度与频率等。那么,这个神奇的TTS究竟是什么东西呢?   其实,TTS是微软出品的一套文字朗读引擎(Text-To-Speech Engine),这些英语软件就是调用它来进行英文朗读的。我们在英语 学习软件的编程开发中也可使用TTS技术,下面笔者将利用Visual Basic 5.0来揭开TTS神秘的面纱。 -current fashion for the English learning software, in the words often said that the use of the international voice of the entire process leading TTS technology, the entire paragraph reads English fluently, and can freely adjust the reading speed and frequency. Well, the magic TTS what exactly is? In fact, Microsoft TTS is the product of a set of text-engine (Text-To-Speech Engine), which is software called English for the English it read aloud. We in the English learning software programming also can use TTS technology, following the author will use Visual Basic 5.0 to open TTS mysterious veil.
Platform: | Size: 69632 | Author: 小炒撒 | Hits:

[Audio programTTS_Reader

Description: Text to Speech with the Microsoft Speech Library and SDK version 5.1-Text to Speech with the Microsoft Speech Li brary and SDK version 5.1
Platform: | Size: 254976 | Author: zhtlove2002 | Hits:

[Speech/Voice recognition/combinewhd

Description: 本软件是一套完全基于神经网络的语音识别处理软件。 本软件为纯绿色软件,无须安装,解压到任意一个目录下,直接运行主程序 whd.exe ,卸载时删除所在目录即可,软件不会给系统留下任何垃圾,请放心试用,但为了您的数据安全,在使用时请先将重要数据保存备份,呵呵,我信不过微软啊:) 本软件使用的是本人自行开发的神经网络处理系统,但因工程浩大,且本人穷,只能独立编写,所以现在这个试用版所使用的神经网络系统并不完整,只实现了我最初设计的一半功能,识别效果还不是很理想,正在改进中:) 但还是希望大家能对软件提出宝贵意见,我的邮箱:whd_china@etang.com 或 yinshishan@sina.com -this a completely software based on neural network speech recognition processing software. The software for the pure green software, no installation, to extract an arbitrary directory and run the main program whd.exe. unloading directory will be deleted, the software system will not leave any garbage, please rest assured that trial. But for the sake of your data security, the post will be used to preserve important data backup, Oh, I trust Microsoft ah : ) This is the software I use to the development of the neural network processing system, but the project is a huge one, himself poor, only independent prepared, the trial version now used by the neural network system is incomplete. I just realized the first half of the design function, recognition effect is not very satisfactory, is imp
Platform: | Size: 2885632 | Author: zw | Hits:

[Speech/Voice recognition/combinesapitutorial00

Description: 一个国外人开发的语音识别的示例代码,使用了微软的speech API.-a foreign person development of the Speech Recognition sample code and the use of the Microsoft speech API.
Platform: | Size: 22528 | Author: szg | Hits:

[MiddleWarespeachcontrol

Description: 基于微软的语音控制开发应用,可以控制多个程序 原理是模拟键盘的输入指令-based on the Microsoft Speech Application development control will be able to control a number of procedures principle is simulated keyboard input Directive
Platform: | Size: 199680 | Author: | Hits:

[Speech/Voice recognition/combinebb

Description: 本程序主要是利用Microsoft Speech SDK进行二次开发,写的一个语音识别的小程序,以供刚接触MSSDK的人参考(注:运行程序时需要由微软提供的SAPI)-This procedure is mainly the use of Microsoft Speech SDK for the secondary development of speech recognition to write a small program for those who刚接触MSSDK reference (Note: when running the program provided by the Microsoft SAPI)
Platform: | Size: 3567616 | Author: 梁丁宏 | Hits:

[Multimedia DevelopTTS1

Description: TTS.TTS是text-to-speech的缩写,英文也称Speech Synthesis即语音合成. Microsoft Visual Studio2005+Windows2000/XP+ Microsoft Speech SDK 5.1+Microsoft Speech SDK 5.1 Language Pack 功能说明: 按课或级分类单词,用文件或数据库保存,用户可根据需要选择对应课或级别中的单词; 从文件或数据库中读取英文字符; 通过TTS完成文-本语音转换; 可在程序中设置不同的朗读者; 可调节语速、可暂停、可继续、可跳过、可调节音量; 有一定的帮助说明; 朗读口型的实现(选做);-TTS.TTS is a text-to-speech abbreviation, English Speech Synthesis also known that the speech synthesis. Microsoft Visual Studio2005+ Windows2000/XP+ Microsoft Speech SDK 5.1+ Microsoft Speech SDK 5.1 Language Pack Function Description: Classification by classes or class word with preservation of documents or database, the user can choose according to the corresponding class or classes of words from file or database read English characters through TTS complete text- the voice conversion can set up different procedures were read aloud can Speed regulation can be suspended, you may continue to be skipped, adjustable volume will certainly help with that read the mouth-type realization of (the election to do so)
Platform: | Size: 359424 | Author: 张许 | Hits:

[Graph RecognizeRubycon

Description: It s a neural segreatory that recognize people and speech with these. If a people is not recognized Rubycon ask to create a training with thi new people for a next recognition. Rubycon use the Microsoft Speech sdk, gann neural network and other library (into package). It s only a sperimental software -It s a neural segreatory that recognize people and speech with these. If a people is not recognized Rubycon ask to create a training with thi new people for a next recognition. Rubycon use the Microsoft Speech sdk, gann neural network and other library (into package). It s only a sperimental software ....
Platform: | Size: 54043648 | Author: Flavio | Hits:

[Speech/Voice recognition/combinemassey_speech_project

Description: This the source code to the Massey School of Engineering Speech project.It has the Alice Artificial Intelligence engine included and only needs a Microsoft Agent character to work. The program will work without MSagent as well however. The program will respond to your speech commands using Vista Speech Recognition and can control lights and other devices using X-10 controllers. It can also read the news headlines, activate timers for switching lights, search and play music/videos, read text files,search and display image files and so on. It is fully programmable at run-time.-This is the source code to the Massey School of Engineering Speech project.It has the Alice Artificial Intelligence engine included and only needs a Microsoft Agent character to work. The program will work without MSagent as well however. The program will respond to your speech commands using Vista Speech Recognition and can control lights and other devices using X-10 controllers. It can also read the news headlines, activate timers for switching lights, search and play music/videos, read text files,search and display image files and so on. It is fully programmable at run-time.
Platform: | Size: 3617792 | Author: Tom_M | Hits:

[Windows DevelopMyspeech

Description: 主要是利用Microsoft Speech SDK进行二次开发,写的一个语音识别的小程序- AppWizard has created this Myspeech application for you. This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application. This file contains a summary of what you will find in each of the files that make up your Myspeech application. Myspeech.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. Myspeech.h This is the main header file for the application. It includes other project specific headers (including Resource.h) and declares the CMyspeechApp application class. Myspeech.cpp This is the main application source file that contains the application class CMyspeechApp. Myspeech.rc This is a listing of all of the Microsoft Windows resources that the program uses. It
Platform: | Size: 4091904 | Author: 王强 | Hits:

[Speech/Voice recognition/combineDTalk

Description: Microsoft Speech API的Delphi接口及DEMO。语音合成-DTalk, for Delphi, is a set of Speech nabling?components that implement the Microsoft Speech API. Speech applications written with the DTalk controls will work with any Speech API (SAPI) compliant speech recognition
Platform: | Size: 766976 | Author: 江湖 | Hits:

[OS programmenu_SR_dictation

Description: VC6.0编译可运行的字典语音识别,加载了xml文档,只能识别英语。微软语音识别分两种模式:文本识别模式和命令识别模式.此两种模式的主要区别,主要在于识别过程中使用的匹配字典不同.前者使用的是通用字典,特点是内容多,覆盖的词汇量大,字典由sdk提供.适用于没有预定目标的随机听写之类的应用.同时因为词汇量大直接导致识别的精度降低,识别速度较慢.后者的字典需要 开发者自己编写,就是所说的xml文件.-VC6.0 compiler can run dictionary speech recognition, loading the XML document. Microsoft speech recognition points two modes: text recognition mode and command recognition mode. The main difference between the two different modes mainly depends on the identification process, use matching dictionary. The former is using different general dictionary, characteristic is more content, cover vocabulary is big, dictionary. Suitable for by the SDK provides no reservation target the application of random dictation. Also because such vocabulary big directly to the identification precision of lower, recognition at a slower speed. The latter dictionary needs, it is says developer himself write the XML file.
Platform: | Size: 2075648 | Author: mr chen | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net