文章分类 -  MeiOS / speechReconition

stopSpeechToText 停止语音转文字
摘要:stopSpeechToText ^7.8 停止语音转文字 #请求参数 N/A #接口调用示例 this.$bridge .stopSpeechToText() .then(res => { this.$alert(res) }) .catch(err => { this.$toast(err) } 阅读全文
posted @ 2024-12-18 09:19 AtlasLapetos 阅读(25) 评论(0) 推荐(0)
startSpeechToText 从麦克风采集语音识别转文字
摘要:startSpeechToText ^7.8 从麦克风采集语音识别转文字 #请求参数 N/A #接口调用示例 this.$bridge .startSpeechToText() .then(res => { this.$alert(res) }) .catch(err => { this.$toas 阅读全文
posted @ 2024-12-18 09:19 AtlasLapetos 阅读(12) 评论(0) 推荐(0)
stopTextToSpeech 停止文字转语音
摘要:stopTextToSpeech ^7.8 停止文字转语音 #请求参数 N/A #接口调用示例 this.$bridge .stopTextToSpeech() .then(res => { this.$alert(res) }) .catch(err => { this.$toast(err) } 阅读全文
posted @ 2024-12-18 09:19 AtlasLapetos 阅读(15) 评论(0) 推荐(0)
startTextToSpeech 开始文字转语音
摘要:startTextToSpeech ^7.8 开始文字转语音 #请求参数 Prop Type Default Comment text String N/A 文本内容 url String N/A ./ #接口调用示例 const params = { "text": "文本内容", "url": 阅读全文
posted @ 2024-12-18 09:19 AtlasLapetos 阅读(15) 评论(0) 推荐(0)
prepareSpeech 初始化语音函数
摘要:prepareSpeech ^7.8 prepareSpeech #请求参数 N/A #接口调用示例 this.$bridge .prepareSpeech() .then(res => { this.$alert(res) }) .catch(err => { this.$toast(err) } 阅读全文
posted @ 2024-12-18 09:19 AtlasLapetos 阅读(7) 评论(0) 推荐(0)