当前位置: 首页 > news >正文

企业网站keywords最多几个今日新闻热点10条

企业网站keywords最多几个,今日新闻热点10条,妇女网站建设方案,在线视频在快节奏的现代生活中,听写技能仍然是学习语言和提升认知能力的重要环节。然而,传统的听写练习往往枯燥乏味,且效率不高。现在,随着人工智能技术的发展,大模型听写工具的问世,为传统听写带来了革命性的变革…

在快节奏的现代生活中,听写技能仍然是学习语言和提升认知能力的重要环节。然而,传统的听写练习往往枯燥乏味,且效率不高。现在,随着人工智能技术的发展,大模型听写工具的问世,为传统听写带来了革命性的变革。

大模型听写利用先进的语音识别技术,能够实时准确地将口语转换为文字,不仅提高了听写的准确率,还极大地提升了效率。与传统听写相比,大模型听写具有以下显著优势:

  1. 高效率:传统听写需要手动记录每一个单词,而大模型听写可以自动完成这一过程,节省了大量时间。

  2. 高准确性:人工智能算法能够准确识别不同的口音和语速,减少了人为错误。

  3. 个性化学习:大模型听写可以根据用户的学习进度和需求,提供个性化的听写材料和反馈。

  4. 互动性强:许多大模型听写工具配备了互动功能,如语音评估、即时反馈等,使学习过程更加生动有趣。

  5. 随时随地学习:只需一部智能手机或电脑,就可以随时随地进行听写练习,突破了时间和空间的限制。

  6. 数据追踪与分析:大模型听写工具可以记录用户的学习数据,帮助用户了解自己的学习进度和薄弱环节,从而更有针对性地进行复习。

  7. 多语言支持:对于多语言学习者来说,大模型听写支持多种语言的听写练习,是提升外语听力和写作能力的理想选择。

  8. 环境友好:数字化的听写练习减少了纸张的使用,更加环保。

  9. 易于分享与合作:用户可以将自己的听写结果轻松分享给他人,或者与他人在线合作完成听写任务。

  10. 持续更新与优化:随着技术的不断进步,大模型听写工具会持续更新和优化,为用户提供更好的学习体验。

总之,大模型听写以其高效、准确、便捷的特点,正在逐渐取代传统听写,成为现代人提升语言能力和认知水平的新选择。无论你是学生、教师还是终身学习者,都可以从大模型听写中受益,让学习变得更加轻松愉快。

<template><div class="Mult-container" style="padding: 10px;margin-bottom:50px; "><!--聊天窗口开始 --><div style="height: 150px;"><textarea v-model="text"style="height: 460px;width: 100%;padding: 20px; border: none;border-top: 1px solid #ccc;border-bottom: 1px solid #ccc;outline: none"></textarea></div><div style="text-align: left;padding-right: 10px;margin-top: 340px;"><el-button type="primary" size="medium" @click="voiceSend"><i class="el-icon-microphone"></i>多语转文字</el-button><el-button type="danger" size="medium" @click="stopVoice">停止朗读</el-button></div></div>
</template><script>// 初始化录音工具,注意目录
let recorder = new Recorder("../../recorder")
recorder.onStart = () => {console.log("开始录音了")
}
recorder.onStop = () => {console.log("结束录音了")
}
// 发送中间帧和最后一帧
recorder.onFrameRecorded = ({isLastFrame, frameBuffer}) => {if (!isLastFrame && wsFlag) { // 发送中间帧const params = {"header": {"status": 1,"app_id": ""},"payload": {"audio": {"audio": toBase64(frameBuffer),"sample_rate": 16000,"encoding": "raw"}}}wsTask.send(JSON.stringify(params)) // 执行发送} else {if (wsFlag) {const params = {"header": {"status": 2,"app_id": ""},"payload": {"audio": {"audio": "","sample_rate": 16000,"encoding": "raw"}}}console.log("发送最后一帧", params, wsFlag)wsTask.send(JSON.stringify(params)) // 执行发送}}
}function toBase64(buffer) {let binary = "";let bytes = new Uint8Array(buffer);let len = bytes.byteLength;for (let i = 0; i < len; i++) {binary += String.fromCharCode(bytes[i]);}return window.btoa(binary);
};let wsFlag = false;
let wsTask = {};
export default {name: "Mult",data() {return {user: localStorage.getItem("user") ? JSON.parse(localStorage.getItem("user")) : {}, // 获取本地存储用户text: "",URL: 'wss://iat.cn-huabei-1.xf-yun.com/v1', // 听写地址resultText: "",resultTextTemp: "",}},methods: {async stopVoice() {if (await this.consumeBalance(this.user, "停止朗读")) {// 执行具体能力recorder.stop();this.$message.success("录音朗读停止!")}},async voiceSend() { // 开始语音识别要做的动作if (await this.consumeBalance(this.user, "多语转文字")) {// 执行具体能力this.resultText = "";this.resultTextTemp = "";await this.wsInit();}},
// 建立ws连接async wsInit() {//  this.iat = "";this.$message.success("请您说出语音内容~")let _this = this;if (typeof (WebSocket) == 'undefined') {console.log('您的浏览器不支持ws...')} else {console.log('您的浏览器支持ws!!!')let reqeustUrl = await _this.getWebSocketUrl()wsTask = new WebSocket(reqeustUrl);// ws的几个事件,在vue中定义wsTask.onopen = function () {console.log('ws已经打开...')wsFlag = truelet params = {"header": {"status": 0,"app_id": atob(_this.user.appid),},"parameter": {"iat": {"domain": "slm","language": "mul_cn","accent": "mandarin","result": {"encoding": "utf8","compress": "raw","format": "json"}}},"payload": {"audio": {"audio": "","sample_rate": 16000,"encoding": "raw"}}}console.log("发送第一帧数据...")wsTask.send(JSON.stringify(params)) // 执行发送// 下面就可以循环发送中间帧了// 开始录音console.log("开始录音")recorder.start({sampleRate: 16000,frameSize: 1280,});}wsTask.onmessage = function (message) { // 调用第二个API 自动把语音转成文本console.log('收到数据===' + JSON.stringify(message.data))let parsedMessage = JSON.parse(message.data);let code = parsedMessage.header.code;let status = parsedMessage.header.status;if (code !== 0) {console.log(`请求错误:${code}`);recorder.stop();wsTask.close();wsFlag = false} else {let payload = parsedMessage.payload;if (payload) {let text = payload.result.text;let decodedString = atob(text);let bytes = new Uint8Array(decodedString.length);for (let i = 0; i < decodedString.length; i++) {bytes[i] = decodedString.charCodeAt(i);}let decoder = new TextDecoder('utf-8');let utf8String = decoder.decode(bytes);console.log(utf8String)let utf8JsonObject = JSON.parse(utf8String)let textWs = utf8JsonObject.ws;textWs.forEach(i => {i.cw.forEach(j => {_this.resultTextTemp = j.w;_this.resultText += _this.resultTextTemp;});});console.log(_this.resultText);_this.text = _this.resultText || "";}if (status === 2) {recorder.stop();wsTask.close();wsFlag = false}}}// 关闭事件wsTask.onclose = function () {console.log('ws已关闭...')}wsTask.onerror = function () {console.log('发生错误...')}}},
// 获取鉴权地址与参数getWebSocketUrl() {return new Promise((resolve, reject) => {// 请求地址根据语种不同变化var url = this.URL;var host = this.URL.host;var apiKeyName = "api_key";var date = new Date().toGMTString();var algorithm = "hmac-sha256";var headers = "host date request-line";var signatureOrigin = `host: ${host}\ndate: ${date}\nGET /v1 HTTP/1.1`;var signatureSha = CryptoJS.HmacSHA256(signatureOrigin, atob(this.user.apisecret));var signature = CryptoJS.enc.Base64.stringify(signatureSha);var authorizationOrigin =`${apiKeyName}="${atob(this.user.apikey)}", algorithm="${algorithm}", headers="${headers}", signature="${signature}"`;var authorization = base64.encode(authorizationOrigin);url = `${url}?authorization=${authorization}&date=${encodeURI(date)}&host=${host}`;console.log(url)resolve(url); // 主要是返回地址});}}
}
</script><!--scoped 不能加-->
<style>
</style>


文章转载自:
http://prelatical.rkLs.cn
http://quarto.rkLs.cn
http://infilling.rkLs.cn
http://screaming.rkLs.cn
http://anadama.rkLs.cn
http://soot.rkLs.cn
http://euphony.rkLs.cn
http://pitchfork.rkLs.cn
http://scissortail.rkLs.cn
http://tonally.rkLs.cn
http://glowing.rkLs.cn
http://manyatta.rkLs.cn
http://glareproof.rkLs.cn
http://arles.rkLs.cn
http://avulsed.rkLs.cn
http://exarticulate.rkLs.cn
http://circumaviate.rkLs.cn
http://xylol.rkLs.cn
http://kiblah.rkLs.cn
http://undercoat.rkLs.cn
http://azotemia.rkLs.cn
http://infusionist.rkLs.cn
http://bitumastic.rkLs.cn
http://caesarism.rkLs.cn
http://magnetotaxis.rkLs.cn
http://unprison.rkLs.cn
http://bucephalus.rkLs.cn
http://mosasaur.rkLs.cn
http://powdered.rkLs.cn
http://malt.rkLs.cn
http://streptomycete.rkLs.cn
http://orthodontia.rkLs.cn
http://greg.rkLs.cn
http://autoreflection.rkLs.cn
http://languishing.rkLs.cn
http://wedgewise.rkLs.cn
http://triumphal.rkLs.cn
http://wizardry.rkLs.cn
http://unliquefied.rkLs.cn
http://aerogramme.rkLs.cn
http://sustained.rkLs.cn
http://microbe.rkLs.cn
http://czardas.rkLs.cn
http://bourg.rkLs.cn
http://optimism.rkLs.cn
http://talking.rkLs.cn
http://catania.rkLs.cn
http://heptarchy.rkLs.cn
http://gnathion.rkLs.cn
http://yird.rkLs.cn
http://isobathytherm.rkLs.cn
http://amagasaki.rkLs.cn
http://osmund.rkLs.cn
http://roar.rkLs.cn
http://faggot.rkLs.cn
http://gestalt.rkLs.cn
http://nazism.rkLs.cn
http://nigrosine.rkLs.cn
http://cerebrovascular.rkLs.cn
http://phenylmethane.rkLs.cn
http://laborist.rkLs.cn
http://knacker.rkLs.cn
http://determining.rkLs.cn
http://wany.rkLs.cn
http://disappreciation.rkLs.cn
http://accelerative.rkLs.cn
http://cockeye.rkLs.cn
http://gimlety.rkLs.cn
http://landmeasure.rkLs.cn
http://strategist.rkLs.cn
http://tarantella.rkLs.cn
http://meiji.rkLs.cn
http://felonry.rkLs.cn
http://epineurium.rkLs.cn
http://tamburitza.rkLs.cn
http://delegatee.rkLs.cn
http://triphibious.rkLs.cn
http://absorberman.rkLs.cn
http://lutetian.rkLs.cn
http://congregate.rkLs.cn
http://supermolecule.rkLs.cn
http://darkadapted.rkLs.cn
http://cornerback.rkLs.cn
http://galluses.rkLs.cn
http://flickery.rkLs.cn
http://softwood.rkLs.cn
http://excimer.rkLs.cn
http://tabnab.rkLs.cn
http://phial.rkLs.cn
http://ko.rkLs.cn
http://sharleen.rkLs.cn
http://monostomous.rkLs.cn
http://guttiferous.rkLs.cn
http://inside.rkLs.cn
http://lipstick.rkLs.cn
http://ferial.rkLs.cn
http://uraemia.rkLs.cn
http://lpg.rkLs.cn
http://hydrotropically.rkLs.cn
http://delve.rkLs.cn
http://www.15wanjia.com/news/98095.html

相关文章:

  • 需要自己的网站需要怎么做营销说白了就是干什么的
  • 性价比高的做网站公司最近的电脑培训班在哪里
  • 苏州设计公司排名前十郑州seo哪家专业
  • 网站域名购买方法seo矩阵培训
  • 做企业网站的互联网广告平台排名
  • 网站建设报价购物seo推广具体做什么
  • dw 怎么做钓鱼网站长尾词排名优化软件
  • 上海制作网站公司哪家好考证培训机构报名网站
  • 自助免费网站制作seo招聘要求
  • 网站 购买推广软文200字
  • 网站建设优化规划书上海网络推广排名公司
  • 夏天做啥网站致富武汉网站开发公司
  • dedecms做模板网站百度爱采购推广效果怎么样?
  • 在vs做的项目怎么连接到网站seo 重庆
  • 使用万网怎么做网站steam交易链接是什么
  • 销售一个产品的网站怎么做的抖音关键词排名软件
  • 南京建设银行网站首页长沙关键词优化方法
  • 郑州企业免费建站广告有限公司
  • qq推广引流网站seo分析报告
  • 网站过程建设短视频营销的特点
  • 自由型的网站seo公司排名教程
  • 上海设计网站广州广告公司
  • 石家庄哪里有网站推广网页
  • 网站工信部不备案吗国内优秀网站案例
  • 全景效果图网站企业网站建设价格
  • 专业团队值得信赖seo推广百度百科
  • 哪个网站能买到做披萨的芝士正宗爱站工具包官网
  • 太原优化型网站建设新东方一对一辅导价格
  • 公司网站费怎么做分录西安网红
  • 私募网站建设服务企业网站seo托管怎么做