登录
首页 » c# » 语音呼叫系统

语音呼叫系统

于 2022-03-21 发布 文件大小:2.98 MB
0 86
下载积分: 2 下载次数: 1

代码说明:

用于语音呼叫,提供多种语音选择,方便测试,具体代码没有体现,只是一个测试功能,具体业务方面需自己去晚完善,

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • SPIdeIN-OUT
    说明:  详细描述SPI发送和接收过程,已经经过调试通过,主要适用于PIC18FXXX(A detailed description of the process of sending and receiving SPI, debugging has been approved, mainly applicable to PIC18FXXX)
    2009-08-11 14:42:43下载
    积分:1
  • C# 制作系统服务 实例源码下载
    附件中有详细的安装使用文档,大概步骤如下:1.新建Windows项目,选择"Windows服务"类型的工程。2.生成的Program.cs文件中,定义了服务启动的Main函数。 代码 namespace WindowsService1{    static class Program    {        ///         /// 应用程序的主入口点。        ///         static void Main()        {            ServiceBase[] ServicesToRun;            ServicesToRun = new ServiceBase[]             {                 new Service1()             };            ServiceBase.Run(ServicesToRun);        }    }}  3.在新建的工程中,点击Service1.cs文件,切换到代码视图,生成的代码继承于ServiceBase基类,并重载了OnStart和OnStop方法。我在这个文件中进行了一些简单的操作,就是在服务开始的时候,定义一个定时器,然后每隔1秒钟,向文件中写入当前时间。 代码 namespace WindowsService1{    public partial class Service1 : ServiceBase    {        Timer timer;        public Service1()        {            InitializeComponent();        }        protected override void OnStart(string[] args)        {            timer = new Timer(1000);            timer.Elapsed  = new ElapsedEventHandler(timer_Elapsed);            timer.Start();        }        protected override void OnStop()        {            timer.Stop();            timer.Dispose();        }        void timer_Elapsed(object sender, ElapsedEventArgs e)        {            string filePath = AppDomain.CurrentDomain.BaseDirectory   "test.txt";            StreamWriter sw = null;            if (!File.Exists(filePath))            {                sw = File.CreateText(filePath);            }            else            {                sw = File.AppendText(filePath);            }            sw.Write("访问时间:" DateTime.Now.ToString() Environment.NewLine);            sw.Close();        }    }}4.向工程中添加一个安装程序类。 4.在新添加的安装程序类中,设定服务的名称,启动方式,账号名和密码等信息。 代码 namespace WindowsService1{    partial class Installer1    {        ///         /// 必需的设计器变量。        ///         private System.ComponentModel.IContainer components = null;        private System.ServiceProcess.ServiceProcessInstaller spInstaller;        private System.ServiceProcess.ServiceInstaller sInstaller;        ///          /// 清理所有正在使用的资源。        ///         /// 如果应释放托管资源,为 true;否则为 false。        protected override void Dispose(bool disposing)        {            if (disposing && (components != null))            {                components.Dispose();            }            base.Dispose(disposing);        }        #region 组件设计器生成的代码        ///         /// 设计器支持所需的方法 - 不要        /// 使用代码编辑器修改此方法的内容。        ///         private void InitializeComponent()        {            components = new System.ComponentModel.Container();            // 创建ServiceProcessInstaller对象和ServiceInstaller对象            this.spInstaller =new System.ServiceProcess.ServiceProcessInstaller();            this.sInstaller = new System.ServiceProcess.ServiceInstaller();            // 设定ServiceProcessInstaller对象的帐号、用户名和密码等信息            this.spInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;            this.spInstaller.Password = null;            this.spInstaller.Username = null;            // 设定服务的名称            this.sInstaller.ServiceName = "WindowsService1";            //设定服务启动的方式            this.sInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;            this.Installers.AddRange(new System.Configuration.Install.Installer[] {            this.spInstaller,this.sInstaller});        }        #endregion    }}5.生成工程,在bin目录下会生成exe文件。如果直接运行exe文件的话,是不能执行的,需要使用安装Windows服务用到一个名为InstallUtil.exe的命令行工具,打开命令行工具,转到InstallUtil.exe的目录下,我安装的是VS 2010,对应的目录为:C:WindowsMicrosoft.NETFrameworkv4.0.30319InstallUtil.exe,然后执行InstallUtil.exe 待执行的exe文件的目录,如:InstallUtil.exe F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe。执行成功后,会在Windows的服务中,出现了刚刚添加的服务的名称。 6.启动该服务,这时打开binDebug文件夹,发现已经生成了一个test.txt的文件,里面记录了时间。这说明服务已经正式开始执行。7.停止服务的操作也和简单,打开命令行工具,转到C:WindowsMicrosoft.NETFrameworkv4.0.30319目录,然后执行InstallUtil.exe - u F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe命令就可以了。
    2015-04-21下载
    积分:1
  • binary-amplitude-shift
    在现代通信原理课程中,在MATLAB中实现二进制幅移键控调制程序。(In modern communication theory course, to implement in MATLAB binary amplitude shift keying modulation program.)
    2011-10-04 10:42:12下载
    积分:1
  • CoodConvert
    测绘行业的坐标转换程序 用于大地坐标系,空间直角坐标系转换 大地坐标系,直角坐标系转换(Mapping the coordinates of the conversion process industries for the geodetic coordinate system, Cartesian coordinate system conversion of space geodetic coordinate system, Cartesian coordinate system conversion)
    2020-09-30 11:27:42下载
    积分:1
  • tms320f28069例程
    各种外设历程。包含 头文件 以及IQmath库。以及带bios系统的cmd文件 和 不带bios系统的cmd文件F2806x_Headers_BIOS.cmd F2806x_Headers_noBIOS.cmd
    2023-08-22 09:45:04下载
    积分:1
  • optimTipsWebinar
    MATLAB软件中重要的函数的代码的源文件(An important function of MATLAB software, the code of the source file)
    2009-11-28 16:45:51下载
    积分:1
  • tsai摄像机标定
    实现tsai的摄像机标定方法,具体的实现是:先生成对应的世界坐标和图像坐标,根据图像坐标和世界坐标之间的转化关系,实现摄像机参数的标定,标定过程只需要采集一幅图像;并且可以在不同方式下衡量摄像机标定精度。
    2022-04-24 13:45:23下载
    积分:1
  • anfismex
    用于模糊理论的核心函数,可以转成M文件来方正(fuzzy study)
    2010-12-08 14:01:27下载
    积分:1
  • W5500
    以太网芯片w5500开发例程,提供给正在开发以太网的朋友(Ethernet chip w5500 development of routines)
    2014-10-27 14:44:06下载
    积分:1
  • USB_DriverBulk
    USB动态库 可以直接调用API函数进行windows USB驱动开发(USB DLL )
    2016-06-29 17:28:55下载
    积分:1
  • 696516资源总数
  • 106442会员总数
  • 11今日下载