更新记录
1.0.1(2024-10-21)
修改增加keepAlive
1.0.0(2024-10-16)
第一个版本上传
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 4.29,Android:5.0,iOS:12,HarmonyOS:不确定 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
//调用案例
<template>
<view class="content">
<button @click="check">检查权限</button>
<button @click="start1">开始语音转换</button>
<button @click="end1">结束语音转换</button>
<p>实时语音内容</p>
<text>{{contents}}</text>
<p>实时翻译内容</p>
<text>{{translateContent}}</text>
</view>
</template>
<script>
import {checkAudioRermissions,startConvertAudio,endConvertAudio} from "../../uni_modules/p-xunfei"
export default {
data() {
return {
audioUrl:"",
contents:"",
translateContent:""
}
},
onLoad() {
},
methods: {
end1() {
endConvertAudio({
success(res) {
console.log(res)
uni.showToast({
title:"结束录音转换"
})
}
})
},
start1() {
startConvertAudio({
appId:"63cb3116",
appKey:"ac632308bb8cead222876412f0227a08",
// lang:"cn",
// targetLang:'en',
success: (res) => {
console.log(res)
if(res.data && res.data.src) {
this.contents = res.data.src
}
if(res.data && res.data.dst) {
this.translateContent = res.data.dst
}
}
})
},
check() {
checkAudioRermissions({
success(res) {
console.log(res)
uni.showToast({
title:res.data==1?'有权限':'无权限',
icon:'none',
duration:2000
})
}
});
},
}
}
</script>
<style>
p {
color: red;
text-align: center;
margin: 10px 0;
}
</style>