cordova-plugin-sound-meter
v1.0.0
Published
Cordova Plugin To Get Sound Amplitude
Downloads
8
Maintainers
Readme
Supported Platform
Android Only
Installation
cordova plugin add https://github.com/six519/cordova-plugin-sound-meter.git
or via npm
cordova plugin add cordova-plugin-sound-meter
Usage
::
window.soundMeterPlugin.getAmplitude(function(e){
//success callback
alert(e["amplitude"]);
}, function(e){
//error callback
alert('The error is: ' + e);
});