首页 > 开发 > 综合 > 正文

在C#中使用微软AGENT之TTS

2024-07-21 02:26:35
字体:
来源:转载
供稿:网友
微软agent简介 

微软agent api能够提供卡通角色的显示,另外,它还可以支持语音识别,因此应用软件可以对语音命令作出反应,而卡通角色可以通过合成的语音、录制好的音频信号或文字对命令作出反应。

使用微软agent的要求

要使用该技术,我们必须有下面的组件: 

·微软agent核心组件 

·微软agent中的卡通角色━━genie、merlin、robby和peedy 

·微软speech api 4.0a运行时间库 

·微软语音识别引擎 

·lernout和hauspie文字-语音引擎 

上面的所有这些组件都可以从http://microsoft.com/products/msagent/downloads.htm下载。 

语音技术简介 

文字-语音转换指的是计算机将文字信息转换为合成语音进行输出,语音识别是指计算机能够识别出说话者所说的话,接受说话者的命令和输入的数据。 

语音识别和文字-语音转换都需要用到相关的引擎,几乎所有的语音识别引擎都是将输入的语音数据转换为与特定引擎相关的音素,然后这些音素被转换为应用程序能够使用的文字。 

文本-语音转换的二种方式: 

1、合成文本-语音转换 

2、连续文本-语音转换 

合成文本-语音转换方式: 

在合成的发音方式中,引擎处理每个单词,并产生该单词的发音音素,然后这些音素被转入一个复杂的算法中,模仿人类的发声方式,生成语音。 

连续文本-语音转换方式: 

在连续文本-语音转换方式中,引擎对文本信息进行处理,从一个预先录制好的语音库中找出句子、单词和短语,在这种方式中,生成的语音是连续的。

语音应用程序的编程接口 

微软语音应用程序编程接口在win32(windows 95、windows nt)下使用了ole组件对象模式(com)架构,微软的agent架构在合成语音输出中使用了微软语音应用程序编程接口(sapi),还使用sapi支持语音输入(语音识别sr或文本-语音转换tts)。微软的agent定义了让应用程序访问其服务的接口,使得应用程序能够控制角色动画、支持用户输入事件,指定输出方式。 

角色窗口 

在微软agent应用程序中,卡通角色是在它们各自的窗口中被显示的,这些窗口总是出现在z轴顺序的最顶端。用户可以通过鼠标左键拖动角色移动角色所在的窗口,角色的图像随着指针而移动。 

说话汽球圈 

除了语音输出外,动画角色还支持以卡通类型说话汽球圈形式的文字字幕,角色说话时,所说的文字就出现在汽球圈儿中,当说完时,汽球圈也就不见了。 

在互联网网页中使用微软agent 



要在互联网网页中使用微软agent服务,可以在网页中的或元素中使用html标记,指定控制的clsid(类标识符),另外,还需要使用codebase参数指定微软agent的安装文件的位置和版本号。 

我们可以使用vbscript、javascript和jscript在互联网网页中使用微软agent。

600){this.height=this.height*600/this.width;this.width=600;}" border=0>

在.net架构中使用微软agent 

微软agent不是以activex控制dll的形式提供的。要在.net中使用它,可以使用由.net框架sdk提供的aximp.exe工具: 

aximp -->> activex控制-win窗体组合体生成器  

  syntax: aximp [/? | [[/source] ocxname]] 

aximp agentctl.dll 

上面的命令生成二个文件:axagentobjects.dll和agentobjects.dll。通过使用这二个文件,我们就可以在.net中使用agent了。


c#中的微软agent: 

要在c#中使用微软agent,我们必须在程序中添加二个dll文件:axagentobjects.dll和agentobjects.dll。加载动画角色的代码是相当简单的:

axagent.characters.load("genie",(object)"c:/windows/msagent/chars/genie.acs"); 

character = axagent.characters["genie"]; 

file://将语言设置为美国英语 

character.languageid = 0x409; 

file://该行代码显示角色 

character.show(null);  


让角色说话的代码如下所示: 

  character.speak ("welcome you sir visit www.onlinecsharpteach.netfirms.com ",null); 

下面我们来看一个例子: 

the example:  




using system;  

using system.drawing;  

using system.winforms;  

using agentobjects;  

public class hello: form  

{  

private system.componentmodel.container components;  

private system.winforms.button button2;  

private system.winforms.button button1;  

private system.winforms.textbox textbox1;  

private axagentobjects.axagent axagent;  

private iagentctlcharacterex character;  

public hello()  

{  

initializecomponent();  

}  

public static void main(string[] args)  

{  

application.run(new hello());  

}  

private void initializecomponent()  

{  

this.components = new system.componentmodel.container();  

this.button1 = new system.winforms.button();  

this.button2 = new system.winforms.button();  

this.textbox1 = new system.winforms.textbox();  

this.axagent = new axagentobjects.axagent();  

axagent.begininit();  

button2.click += new system.eventhandler(button2_click);  

button1.location = new system.drawing.point(88, 208);  

button1.backcolor =  

(system.drawing.color)system.drawing.color.fromargb((byte)255, (byte)128, (byte)128);  

button1.size = new system.drawing.size(152, 32);  

button1.tabindex = 1;  

button1.text = "load character";  

button2.location = new system.drawing.point(120, 240);  

button2.backcolor =  

(system.drawing.color)system.drawing.color.fromargb((byte)255, (byte)128, (byte)128);  

button2.size = new system.drawing.size(96, 24);  

button2.tabindex = 2;  

button2.text = "speak";  

textbox1.location = new system.drawing.point(48, 8);  

textbox1.text = " ";  

textbox1.multiline = true;  

textbox1.tabindex = 0;  

textbox1.size = new system.drawing.size(248, 200);  

textbox1.backcolor =  

(system.drawing.color)system.drawing.color.fromargb((byte)255, (byte)128, (byte)128);  

this.text = "msagent demo";  

this.autoscalebasesize = new system.drawing.size(5, 13);  

this.windowstate = system.winforms.formwindowstate.maximized;  

this.backcolor =  

(system.drawing.color)system.drawing.color.fromargb((byte)255, (byte)192, (byte)192);  

this.clientsize = new system.drawing.size(344, 301);  

this.controls.add(button2);  

this.controls.add(button1);  

this.controls.add(textbox1);  

this.controls.add(axagent);  

button1.click += new system.eventhandler(button1_click);  

axagent.endinit();  

}  

protected void button2_click(object sender, system.eventargs e)  

{  

if(textbox1.text.length == 0)  

return;  

character.speak(textbox1.text, null);  

}  

protected void button1_click(object sender, system.eventargs e)  

{  

openfiledialog openfiledialog = new openfiledialog();  

openfiledialog.addextension = true;  

openfiledialog.filter = "microsoft agent characters (*.acs)|*.acs";  

openfiledialog.filterindex = 1 ;  

openfiledialog.restoredirectory = true ;  

if(openfiledialog.showdialog() != dialogresult.ok)  

return;  

try { axagent.characters.unload("characterid"); }  

catch { }  

axagent.characters.load("characterid", (object)openfiledialog.filename);  

character = axagent.characters["characterid"];  

character.languageid = 0x409;  

character.show(null);  

character.play ("announce");  

character.speak ("welcome you sir",null);  

}

 }  


 
输出: 

600){this.height=this.height*600/this.width;this.width=600;}" border=0>

600){this.height=this.height*600/this.width;this.width=600;}" border=0>

结束语: 

微软的agent api提供了支持动画角色显示的服务,被配置为ole automation(com)服务器时,它能够使多个被称为客户或客户端应用软件的应用程序同时托管或使用其动画、输入、输出服务。 
 

菜鸟学堂:
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表