微信小程式API 錄音


wx.startRecord(OBJECT)


開始錄音。當主動呼叫wx.stopRecord,或錄音超過1分鐘時自動結束錄音,返回錄音檔案的暫存檔案路徑

OBJECT參數說明:

QQ截图20170208110355.png

wx.stopRecord()


主動呼叫停止錄音。

範例程式碼:

wx.starRecord({
  success:function(res){
     var tempFilePath = res.tempFilePath;  
  },
  fail:function(res){
     //录音失败
  }
});
setTimeout(function(){  
  //结束录音  
  wx.stopRecord();
},10000);