RecorderManager.onStop
监听录音结束事件,成功时回调录音文件临时路径。
语法
RecorderManager.onStop(callback)
参数说明
Function callback
代码示例
<!-- index.ttml -->
<button type="primary" bindtap="startRecord">开始录音</button>
<button type="primary" bindtap="stopRecord">停止录音</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.onStop((res) => {
tt.showModal({
title: "录音结束",
content: JSON.stringify(res),
});
this.setData({
status: "录音结束",
});
});
this.recorderManager.start(options);
tt.showToast({ title: "点击了开始录音" });
this.setData({
status: "正在录音",
});
},
stopRecord() {
this.recorderManager && this.recorderManager.stop();
},
});
Bug & Tip
暂无
点击纠错
评价此篇文档