emj365 / cordova-plugin-audio-recorder-api

This plugin is a Cordova audio recorder plugin which works as API.
86 stars 63 forks source link

Plugin not working. Does any fork work? #43

Open Jun711 opened 7 years ago

Jun711 commented 7 years ago

Hi, I used the following function on both Android and iOS but it returned error. Does anyone know if any fork works?

recorder.record = function() {
  window.plugins.audioRecorderAPI.record(function(msg) {
    // complete
    alert('ok: ' + msg);
  }, function(msg) {
    // failed
    alert('ko: ' + msg);
  }, 30); // record 30 seconds
}