小程序
小游戏
企业微信
微信支付
扫描小程序码分享
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
确认下工具用的appid跟mp的appid是否一致?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
确认下工具用的appid跟mp的appid是否一致?
plugin.setQCloudSecret(config.appid, config.secretid, config.secretkey, config.openConsole) //设置腾讯云账号信息,其中appid是数字,secret是字符串,openConsole是布尔值(true/false),为控制台打印日志开关
plugin.textToSpeech({
content: text,
speed: 0,
volume: 0,
voiceType: 0,
language: 1,
projectId: 0,
sampleRate: 16000,
success: function (data) {
let url = data.result.filePath;
console.log("TTS success", url)
if (url && url.length > 0) {
innerAudioContext.autoplay = true
innerAudioContext.src = url
innerAudioContext.onPlay(() => {
})
innerAudioContext.onError((res) => {
console.log(res.errMsg)
})
}
},
fail: function (error) {
console.log(error);
}
})