实现语音聊天,请指点

bbildb 2003-08-12 12:45:50
小弟,要实现语音聊天(.net),不只如何下手,请各位大哥指点指点
...全文
51 23 打赏 收藏 转发到动态 举报
写回复
用AI写文章
23 条回复
切换为时间正序
请发表友善的回复…
发表回复
popu2 2003-11-19
  • 打赏
  • 举报
回复
如果用java applet就好用
lanyahuhu 2003-11-19
  • 打赏
  • 举报
回复
mark
Rossetti 2003-11-19
  • 打赏
  • 举报
回复
在提
cpw008 2003-11-13
  • 打赏
  • 举报
回复
先看一下多媒体高级编程吧,agent只是一些锦上添花的功能,并不能完成语音的录入和播放,同时还有网络编程,text-to-spech可以支持中文在微软的网页可以down在w2k下测试没有问题
Rossetti 2003-11-13
  • 打赏
  • 举报
回复
在提。
mjzcyber 2003-11-12
  • 打赏
  • 举报
回复
学习
lyhold 2003-11-12
  • 打赏
  • 举报
回复
想语音聊天室怎么做的。我一直也想知道。

调用agent很简单,我以前在delphi下实现过。c#也修改啦。没问题
Rossetti 2003-11-12
  • 打赏
  • 举报
回复
提。
madong 2003-08-24
  • 打赏
  • 举报
回复
先保留
bbildb 2003-08-14
  • 打赏
  • 举报
回复
没人在给我讲讲了吗?
bbildb 2003-08-13
  • 打赏
  • 举报
回复
gz
bbildb 2003-08-13
  • 打赏
  • 举报
回复
我要的是中文,大家能不能结合.net网络应用,说的详细一点,再谢
bbildb 2003-08-13
  • 打赏
  • 举报
回复
up
bbildb 2003-08-13
  • 打赏
  • 举报
回复
多谢, heroabi(萧索寒) 大哥详细的解说,但我要的是语音聊天,不是朗读,而且,一定要支持中文,谢
loulanlouzhu 2003-08-13
  • 打赏
  • 举报
回复
顶!
heroabi 2003-08-13
  • 打赏
  • 举报
回复
##要求
(1)微软公司视窗2000服务器版或视窗 XP 版
(2).Net FrameWrok SDK Beta 2版
(3)Microsoft Agent核心组建
(4)Microsoft Agent的精灵:吉尼(Genie)、么林(Merlin)、罗比(Robby)和皮蒂(Peedy)
(5)至少有一个英语的Text-to-Speech引擎(现在还找不到中文的)
(6)微软运行时发音API4.0a
(如果还要实现语音识别功能的话,还要有微软的语音识别引擎)
所有这些都可以在http://microsoft.com/msagent/downloads.htm,下载下面六个文件:
Download selected language component
Download selected character
Download selected engine
Download the Microsoft SAPI 4.0a runtime binaries (824 KB exe)
Download the Microsoft® Speech Recognition Engine (6 MB exe)
Download the Speech Control Panel (927 KB exe)
下载完后,直接解压安装它们,重启电脑.
另外,必须要安装Office2000(Office97是不行的)。

##实现方法
1.打开VS.Net,新建一个工程,不妨取名为CoolUI.
2.创建用户界面。
选择菜单:工具->自定义工具箱,并选择Microsoft Agent Control 2.0组件,
将Microsoft Agent Control控件添加到窗体上(在程序运行时是看不到窗体是的Microsoft Agent控件的,只有在设计界面时它才显示出来),
将主窗体的Text属性设置为“CoolUI”;将左边三个按钮的Text属性分别设置为“导入精灵”、“朗读文本”、“隐藏精灵”;将textBox的Text属性设置为“Type anything here for the character to read for you!(Only English)”,Multiline属性设置为True。
3.简单的用户界面已经完成,现在来进行代码部分的工作:
首先,添加using AgentObjects;到代码的开始处。
其次,在我们的类里添加私有数据成员:private IAgentCtlCharacterEx Character;(这就是我们要用到的精灵的对象)。修改构造函数如下:
public Form1()
{
 InitializeComponent();
 button2.Enabled=false;//先使下面的两个按钮无效
 button3.Enabled=false;
}
接着,添加左边三个按钮的鼠标单击的消息相应函数:
 private void button1_Click(object sender, System.EventArgs e)
 private void button2_Click(object sender, System.EventArgs e)
 private void button3_Click(object sender, System.EventArgs e)
代码如下:
private void button1_Click(object sender, System.EventArgs e)
{
 axAgent1.Characters.Load("Genie", (object)"GENIE.ACS");//导入吉尼这个精灵
 Character = axAgent1.Characters["Genie"];
 Character.LanguageID = 0x409;//把语言设置为英语,这里不能是中文
  Character.Show(null);//显示精灵
 button1.Enabled=false;//重新设置按钮的有效性
 button2.Enabled=true;
 button3.Enabled=true;
}

private void button2_Click(object sender, System.EventArgs e)
{
 if(textBox1.Text.Length == 0) //如果没有字符的话,就不读
 return;
 Character.Speak(textBox1.Text, null);//让精灵朗读文本
}

private void button3_Click(object sender, System.EventArgs e)
{
 Character.Play("Wave");
 Character.Play("Hide");//隐藏精灵
}

所有完整的代码如下:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using AgentObjects;

namespace CoolUI
{
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.TextBox textBox1;
private System.ComponentModel.Container components = null;
private AxAgentObjects.AxAgent axAgent1;
private IAgentCtlCharacterEx Character;

public Form1()
{
InitializeComponent();
button2.Enabled=false;//先使下面的两个按钮无效
button3.Enabled=false;
}
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.axAgent1 = new AxAgentObjects.AxAgent();
((System.ComponentModel.ISupportInitialize)(this.axAgent1)).BeginInit();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(32, 32);
this.button1.Name = "button1";
this.button1.TabIndex = 1;
this.button1.Text = "导入精灵";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(32, 80);
this.button2.Name = "button2";
this.button2.TabIndex = 2;
this.button2.Text = "朗读文本";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
this.button3.Location = new System.Drawing.Point(32, 128);
this.button3.Name = "button3";
this.button3.TabIndex = 3;
this.button3.Text = "隐藏精灵";
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(120, 16);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(184, 184);
this.textBox1.TabIndex = 4;
this.textBox1.Text = "Type anything here for the character to read for you!(Only English)";
//
// axAgent1
//
this.axAgent1.Enabled = true;
this.axAgent1.Location = new System.Drawing.Point(56, 176);
this.axAgent1.Name = "axAgent1";
this.axAgent1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAgent1.OcxState")));
this.axAgent1.Size = new System.Drawing.Size(32, 32);
this.axAgent1.TabIndex = 5;
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(336, 229);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.axAgent1,
this.textBox1,
this.button3,
this.button2,
this.button1});
this.Name = "Form1";
this.Text = "CoolUI";
((System.ComponentModel.ISupportInitialize)(this.axAgent1)).EndInit();
this.ResumeLayout(false);

}
#endregion

[STAThread]
static void Main()
{
Application.Run(new Form1());
}

private void button1_Click(object sender, System.EventArgs e)
{
axAgent1.Characters.Load("Genie", "Genie.acs");//导入吉尼这个精灵
Character = axAgent1.Characters["Genie"];
Character.LanguageID = 0x409;//把语言设置为英语,这里不能是中文
Character.Show(null);//显示精灵
button1.Enabled=false;//重新设置按钮的有效性
button2.Enabled=true;
button3.Enabled=true;
}

private void button2_Click(object sender, System.EventArgs e)
{
if(textBox1.Text.Length == 0) //如果没有字符的话,就不读
return;
Character.Speak(textBox1.Text, null);//让精灵朗读文本
}

private void button3_Click(object sender, System.EventArgs e)
{
Character.Play("Wave");
Character.Play("Hide");//隐藏精灵
}
}
}

4.好了,现在完成了所有的工作了,安Ctrl+F5试试效果吧!
呵呵,我也是看了别人的例子!!
jiadrun 2003-08-12
  • 打赏
  • 举报
回复
在Windows中有一套以wavein和waveout开头的函数,可以实现你的功能。
heroabi 2003-08-12
  • 打赏
  • 举报
回复
需要用到微软的AGLIENT(好象是这个单词,记不大清了!)
LongBow007 2003-08-12
  • 打赏
  • 举报
回复
mark
goody9807 2003-08-12
  • 打赏
  • 举报
回复
up
加载更多回复(3)

62,046

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术交流专区
javascript云原生 企业社区
社区管理员
  • ASP.NET
  • .Net开发者社区
  • R小R
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

.NET 社区是一个围绕开源 .NET 的开放、热情、创新、包容的技术社区。社区致力于为广大 .NET 爱好者提供一个良好的知识共享、协同互助的 .NET 技术交流环境。我们尊重不同意见,支持健康理性的辩论和互动,反对歧视和攻击。

希望和大家一起共同营造一个活跃、友好的社区氛围。

试试用AI创作助手写篇文章吧