摘要: 使用场景 后端传递嵌套数据 菜单权限等 树结构转数组 /** * 树结构转数组 * @param {Object} arr 树结构 */ export const treeToList = (arr) => { let tree = JSON.parse(JSON.stringify(arr)); 阅读全文
posted @ 2022-07-26 12:05 流云君 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 文字转语音 SpeechSynthesisUtterance是HTML5中新增的API,用于将指定文字合成为对应的语音 function sayTTS(content) { const synth = window.speechSynthesis; const msg = new SpeechSyn 阅读全文
posted @ 2022-07-26 11:57 流云君 阅读(1265) 评论(0) 推荐(0) 编辑
摘要: 1.按钮 <el-button @mousedown="down" @touchstart="down" @mousemove="move" @touchmove="move" @mouseup="end" @touchend="end" @touchcancel="end" > </el-butt 阅读全文
posted @ 2022-07-26 11:41 流云君 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 仿微信语音聊天webrtc 主要技术 MediaRecorder 录音 webrtc 获取麦克风 URL.createObjectURL 转换为url(实际生产中,通过后端转换blob为mp3网址) 实现elementui+vue 1.html <div class="chat-record"> <audio ref="cha 阅读全文
posted @ 2022-07-26 11:24 流云君 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 自签证书https 1.下载编译好的openssl。 http://slproweb.com/products/Win32OpenSSL.html 下载完成后运行安装: 记住你安装到的目录,等下打开这个文件夹(小贴士:最后一步是捐钱,记得取消。土豪可以无视) 2.打开并运行start(.bat) 以管理员方式 3.生成 阅读全文
posted @ 2022-07-26 10:40 流云君 阅读(534) 评论(0) 推荐(0) 编辑
摘要: webrtc实时视频语音实现 ##webrtc介绍 WebRTC实现了基于网页的视频会议,标准是WHATWG 协议,目的是通过浏览器提供简单的javascript就可以达到实时通讯(Real-Time Communications (RTC))能力。 实时语音demo 环境搭建 需要信令服务器与中继服务器作为中转 1.expre 阅读全文
posted @ 2022-07-26 10:23 流云君 阅读(379) 评论(0) 推荐(0) 编辑