上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 69 下一页
摘要: 在 .net 4.0 添加引用system.speech.dll using System.Speech.Recognition; //创建语音识别引擎 SpeechRecognitionEngine recognitionEngine = new SpeechRecognitionEngine() 阅读全文
posted @ 2023-08-18 11:07 海乐学习 阅读(561) 评论(0) 推荐(0) 编辑
摘要: 运行以下命令以确定已安装的识别器,断点/调试 foreach (RecognizerInfo ri in SpeechRecognitionEngine.InstalledRecognizers()){ System.Diagnostics.Debug.WriteLine(ri.Culture.Na 阅读全文
posted @ 2023-08-18 10:42 海乐学习 阅读(39) 评论(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 海乐学习 阅读(230) 评论(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 海乐学习 阅读(1728) 评论(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 海乐学习 阅读(1426) 评论(0) 推荐(0) 编辑
摘要: vue3.0 外部配置文件,重点是打包后也可以 修改配置参数 注:js文件中必须是标准的 json 格式 一、在public中创建static文件夹,在static文件夹中创建 config.json 文件 config.json (必须是标准的 json 格式) { "webSocketUrl": 阅读全文
posted @ 2023-07-24 12:03 海乐学习 阅读(3760) 评论(0) 推荐(0) 编辑
摘要: 效果 man.js 定义 响应式全局对象 globalData //全局对象 const globalData=reactive({ extTelTalkData: [ { userExten: "1000", userName: "刘亦菲", callStatus:"通话" }, { userEx 阅读全文
posted @ 2023-07-21 12:36 海乐学习 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 效果 man.js 定义 响应式全局对象 globalData //全局对象 const globalData=reactive({ missedCallData:"", currentUserTel:"", }) app.provide('globalData', globalData); 在ma 阅读全文
posted @ 2023-07-21 12:29 海乐学习 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 效果 main.js //全局对象 const globalData=reactive({ extTelMonitorData: [ { title: '用户组一', list: [ { groupID: "0", groupName: "All Users", userDomain: "equii 阅读全文
posted @ 2023-07-21 11:58 海乐学习 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 效果 man.js 定义 响应式全局对象 globalData const globalData=reactive({ extTelListData: [ { userExten: "1000", userName: "秦岚", callStatus:"通话" }, { userExten: "10 阅读全文
posted @ 2023-07-21 11:38 海乐学习 阅读(147) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 69 下一页