更新记录
1.0.5(2024-11-19)
更新名称
1.0.4(2024-11-18)
更新LIbs 文件
1.0.3(2024-11-18)
更新文档
查看更多
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.6.8,Android:5.0,iOS:9,HarmonyNext:不确定 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
p-xunfei
<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() {
console.log(plus.io.convertLocalFileSystemURL("_doc"))
startConvertAudio({
filePath:plus.io.convertLocalFileSystemURL("_doc"),
appId:"4e303328",
appKey:"148d236d91f1ca6af91de89f7584af9d",
// 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>