小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我小程序开发时调录音api 方法 RecorderManager.onFrameRecorded 回调里拿到的 frameBuffer 通过udp发回电视端播放异常,同事写的安卓app 录音demo拿到的录音片段发回电视播放却是正常的,然后我再小程序起一个udp 服务端,让他用app demo发送录音回到小程序udp server来,小程序server 接收到数据直接传到电视播放也是异常的,所以我怀疑是不是小程序环境里的arraybuffer 有什么不一样
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<!--pages/sing_demo.wxml-->
<view class="flex field">
<view>IP</view>
<input value="{{ip}}" auto-focus type="text" class="flex_d" data-key="ip" bindinput="onInput" />
</view>
<view>PORT</view>
<input value="{{port}}" type="text" class="flex_d" data-key="port" bindinput="onInput" />
<button catchtap="startServer">UDP Server</button>
<button catchtap="startClient">UDP Client</button>
<button catchtap="sendMsg">UDP Send</button>
<button catchtap="start">Recorder Start</button>
<button catchtap="stop">Recorder Stop</button>
<button catchtap="pause">Recorder Pause</button>
<button catchtap="resume">Recorder Resume</button>
<button catchtap="play">Recorder Play</button>
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
* 页面相关事件处理函数--监听用户下拉动作
onPullDownRefresh() {
* 页面上拉触底事件的处理函数
onReachBottom() {
* 用户点击右上角分享
onShareAppMessage() {
}
})
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
<!--pages/sing_demo.wxml-->
<view class="flex field">
<view>IP</view>
<input value="{{ip}}" auto-focus type="text" class="flex_d" data-key="ip" bindinput="onInput" />
</view>
<view class="flex field">
<view>PORT</view>
<input value="{{port}}" type="text" class="flex_d" data-key="port" bindinput="onInput" />
</view>
<button catchtap="startServer">UDP Server</button>
<button catchtap="startClient">UDP Client</button>
<button catchtap="sendMsg">UDP Send</button>
<button catchtap="start">Recorder Start</button>
<button catchtap="stop">Recorder Stop</button>
<button catchtap="pause">Recorder Pause</button>
<button catchtap="resume">Recorder Resume</button>
<button catchtap="play">Recorder Play</button>
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {
}
})