vue实现语音播报功能

Posted gfweb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue实现语音播报功能相关的知识,希望对你有一定的参考价值。

1,创建一个js文件 (voicePrompt.js)

function voicePrompt (text){
    new Audio(‘http://tts.baidu.com/text2audio?cuid=baiduid&lan=zh&ctp=1&pdt=311&tex=‘ + text).play();
}

export {
    voicePrompt
}

 2在min.js

import * as voicePromptFun from ‘./utils/voicePrompt‘  
Vue.prototype.voicePrompt = voicePromptFun.voicePrompt  //语音提醒

 3在其他页面调用

this.voicePrompt(‘皮卡丘‘);

  

以上是关于vue实现语音播报功能的主要内容,如果未能解决你的问题,请参考以下文章

jQuery.speech实现文本转语音播报功能

PHP实现智能语音播报

iOS自带TTS技术的实现即语音播报

Android语音播报后台播报语音识别

涂鸦智能颈部按摩仪设计——语音播报加热(嵌入式)

ESP32+TFTLCD实现WiFi天气语音播报