1.0.0 • Published 7 years ago

cordova-plugin-sound-meter v1.0.0

Weekly downloads
4
License
Apache 2.0
Repository
github
Last release
7 years ago

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);
});