RecorderManager.onResume
监听录音继续事件。
语法
RecorderManager.onResume(callback)
参数说明
Function callback
代码示例
<button type="primary" bindtap="startRecord">开始录音</button>
<button type="primary" bindtap="pauseRecord">暂停录音</button>
<button type="primary" bindtap="resumeRecord">继续录音</button>
<view>录音状态:{{status}}</view>
// index.js
Page({
data: {
status: "暂未开始",
},
startRecord() {
this.recorderManager = tt.getRecorderManager();
const options = {
duration: 60000,
sampleRate: 12000,
numberOfChannels: 1,
encodeBitRate: 25000,
frameSize: 100,
};
this.recorderManager.onResume((res) => {
console.log("res", res);
tt.showToast({ title: "继续录音" });
this.setData({
status: "正在录音",
});
});
this.recorderManager.start(options);
tt.showToast({ title: "开始录音" });
this.setData({
status: "正在录音",
});
},
pauseRecord() {
if (this.recorderManager) {
this.recorderManager.pause();
tt.showToast({ title: "暂停录音" });
this.setData({
status: "暂停录音",
});
}
},
resumeRecord() {
this.recorderManager && this.recorderManager.resume();
},
});
Bug & Tip
暂无
点击纠错
评价此篇文档