W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
基礎(chǔ)庫 3.120.1 開始支持,低版本需做兼容處理。
解釋: 錄音中斷結(jié)束事件。在收到 interruptionBegin 事件之后,小程序內(nèi)所有錄音會暫停,收到此事件之后才可再次錄音成功。Web 態(tài)說明: Web 態(tài)環(huán)境不支持錄音相關(guān)功能,該事件不會觸發(fā)。
Function callback
Page({
RecorderManagerStart() {
const recorderManager = swan.getRecorderManager()
const options = {
duration: 10000,
sampleRate: 44100,
numberOfChannels: 1,
encodeBitRate: 96000,
format: 'aac'
};
recorderManager.onInterruptionEnd(function(res) {
console.log('recorder onInterruptionEnd', res)
swan.showModal({
title: 'success',
content: 'recorder onInterruptionEnd'
})
});
recorderManager.start(options);
this.recorderManager = recorderManager;
}
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: