npm.io
1.0.0 • Published 9 years ago

audio-recorder-full

Licence
MIT
Version
1.0.0
Deps
0
Vulns
0
Weekly
0

#Cordova Native Audio Plugin

Cordova extension for Native Audio record for iOS and Android.

Integration

###startRecord

function(time, success, error) {
    exec(success, error, "AudioRecorder", "startRecord", [time]);
};

time -> Time in seconds that the recording is made

success -> CallBack function success 'error -> CallBack function error

###stopRecord

function(success, error) {
    exec(success, error, "AudioRecorder", "stopRecord", []);
};

success -> CallBack function success 'error -> CallBack function error

###Based on

https://github.com/emj365/cordova-plugin-audio-recorder-api

Keywords