RecorderManager.stop
基础库 1.0.0 开始支持本方法,这是一个同步方法。
停止录音。
语法
RecorderManager.stop()
参数说明
无
返回值
无
扫码体验
请使用字节宿主APP扫码
代码示例
<!-- 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.start(options);
tt.showToast({ title: "点击了开始录音" });
this.setData({
status: "正在录音",
});
},
stopRecord() {
if (this.recorderManager) {
this.recorderManager.stop();
tt.showToast({ title: "点击了结束录音" });
this.setData({
status: "录音结束",
});
}
},
});
Bug & Tip
无
点击纠错
该文档是否对你的开发有所帮助?
有帮助
没帮助
该文档是否对你的开发有所帮助?
有帮助
没帮助