- 发布:2021-06-05 15:20
- 更新:2022-06-30 15:54
- 阅读:559
产品分类: uni小程序SDK
手机系统: 全部
手机厂商: 华为
页面类型: vue
SDK版本号: 3.1.9.20210413
测试过的手机:
示例代码:
startRecord(tag) {
let options = {};
options.engine = 'baidu';
options.punctuation = true; // 是否需要标点符号
options.continue = false; //连续识别
options.timeout = 10 * 1000;
plus.speech.startRecognize(options,(s)=>{
if(this[tag]){
this[tag] = this[tag] + s;
}else{
this[tag] = s;
}
if (uni.getSystemInfoSync().platform == "ios") {
this.stopRecord();
}
},false);
}
startRecord(tag) {
let options = {};
options.engine = 'baidu';
options.punctuation = true; // 是否需要标点符号
options.continue = false; //连续识别
options.timeout = 10 * 1000;
plus.speech.startRecognize(options,(s)=>{
if(this[tag]){
this[tag] = this[tag] + s;
}else{
this[tag] = s;
}
if (uni.getSystemInfoSync().platform == "ios") {
this.stopRecord();
}
},false);
}
操作步骤:
调用plus.speech.startRecognize方法
调用plus.speech.startRecognize方法
预期结果:
调用成功
调用成功
实际结果:
调用失败
调用失败
bug描述:
集成百度语音,调用语音播放方法报错,报错信息见附件【官方demo同样报错】