上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 68 下一页
摘要: .net 4.0 及 win7 以上 第一步 引用 System.Speech 或者 .net 4.0 及 win7 以下 则需要安装 speechsdk51安装包 引用 Interop.SpeechLib.dll 在网上搜索并下载 代码如下 using System; using System.C 阅读全文
posted @ 2023-08-18 17:17 海乐学习 阅读(1699) 评论(1) 推荐(1) 编辑
摘要: .net 4.0 以上 第一步 引用System.Speech 代码如下 using System.Speech.Recognition;using System.Speech.Synthesis; using System.Globalization;using System.IO; privat 阅读全文
posted @ 2023-08-18 16:15 海乐学习 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 在 .net 4.0 添加引用system.speech.dll using System.Speech.Recognition; //创建语音识别引擎 SpeechRecognitionEngine recognitionEngine = new SpeechRecognitionEngine() 阅读全文
posted @ 2023-08-18 11:07 海乐学习 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 运行以下命令以确定已安装的识别器,断点/调试 foreach (RecognizerInfo ri in SpeechRecognitionEngine.InstalledRecognizers()){ System.Diagnostics.Debug.WriteLine(ri.Culture.Na 阅读全文
posted @ 2023-08-18 10:42 海乐学习 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 下载安装 Speech SDK 5.1 下载地址: http://www.microsoft.com/en-us/download/details.aspx?id=10121 详细的看这篇 https://www.cnblogs.com/hailexuexi/p/17588586.html C#示例 阅读全文
posted @ 2023-07-28 18:11 海乐学习 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 下载安装 Speech SDK 5.1 1. Windows Speech SDK 5.1版本支持xp系统和server 2003系统,需要下载安装。XP系统默认只带了个Microsoft Sam英文男声语音库,想要中文引擎就需要安装Windows Speech SDK 5.1。下载地址:http: 阅读全文
posted @ 2023-07-28 18:01 海乐学习 阅读(1355) 评论(0) 推荐(0) 编辑
摘要: vue客户端 main.js import { createApp } from 'vue' import { reactive } from 'vue' import App from './App.vue' import {webSocketUrl} from '/public/static/c 阅读全文
posted @ 2023-07-24 17:24 海乐学习 阅读(1201) 评论(0) 推荐(0) 编辑
摘要: vue3.0 外部配置文件,重点是打包后也可以 修改配置参数 注:js文件中必须是标准的 json 格式 一、在public中创建static文件夹,在static文件夹中创建 config.json 文件 config.json (必须是标准的 json 格式) { "webSocketUrl": 阅读全文
posted @ 2023-07-24 12:03 海乐学习 阅读(3181) 评论(0) 推荐(0) 编辑
摘要: 效果 man.js 定义 响应式全局对象 globalData //全局对象 const globalData=reactive({ extTelTalkData: [ { userExten: "1000", userName: "刘亦菲", callStatus:"通话" }, { userEx 阅读全文
posted @ 2023-07-21 12:36 海乐学习 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 效果 man.js 定义 响应式全局对象 globalData //全局对象 const globalData=reactive({ missedCallData:"", currentUserTel:"", }) app.provide('globalData', globalData); 在ma 阅读全文
posted @ 2023-07-21 12:29 海乐学习 阅读(73) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 68 下一页