cocowalla / cordova-plugin-audiorecorder

Cordova plugin to leverage audio recording functionality

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AudioRecorder Plugin

Record MPEG4/AAC encoded audio from your hybrid app, on both iOS and Android.

Audio is recorded at 44.1kHz with a bitrate of 32kbps, which is good enough for speech.

This plugin defines a global navigator.device.audiorecorder object which you can use to access the public API.

Installation

This plugin is available on npm, and can be installed with the following command:

cordova plugin add cordova-plugin-audio-recorder

Plugin

Although audiorecorder is globally acessible, it isn't usable until deviceready event is called.

As with all the cordova plugins, you can listen to deviceready event as follows:

document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
    // ...
}

API Reference

AudioRecorder (navigator.device.audiorecorder)


Record Audio file

Calling this method opens the native GUI for the recorder.

Param Type Description
successCallback Function Callback function called when successfully recorded an audio file.
errorCallback Function Callback function called when an error occurs
durationLimit Integer Duration, in seconds, of the recording. Recording stop when reaching the duration limit.

Delete Audio file

Deletes an audio file given its filepath

Param Type Description
successCallback Function Callback function called when the file is successfully deleted
errorCallback Function Callback function called when an error occurs while deleting the file
filepath String File path to the desired file. Usually the filepath returned by the successCallback from recordAudio

Note: On iOS, since we are saving the recordings into the temporary directory, all files will be deleted when the application is restarted.

Success Callback

Signature:

function(data){
    // ...
};

where data parameter is a JSON object:

{
    "full_path":"",
    "file_name":""
}

Error Callback

Signature:

function(err){
    // ...
};

where err parameter is a JSON object:

{
    "error_code":"",
    "error_message":""
}

Possible error_code values:

  • OS_USER_CANCELLED - Integer Value 1. User cancelled the recording session.
  • OS_INTERNAL_ERROR - Integer Value 2. An internal (native) error occurred.
  • OS_INVALID_ARGS - Integer Value 3. Invalid arguments were given.
  • OS_PERMISSION_DENIED - Integer Value 50. (iOS only.)

How it looks

Recording screen

Stop recording screen

Play recording screen


Contributors

Document authors

###Copyright OutSystems, 2016


LICENSE

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Cordova plugin to leverage audio recording functionality

License:MIT License


Languages

Language:Java 54.1%Language:Objective-C 44.9%Language:JavaScript 0.9%