edimuj / cordova-plugin-audioinput

This iOS/Android Cordova/PhoneGap plugin enables audio capture from the device microphone, by in near real-time forwarding audio to the web layer of your application. A typical usage scenario for this plugin would be to use the captured audio as source for a web audio node chain, where it then can be analyzed, manipulated and/or played.

Home Page:https://github.com/edimuj/app-audioinput-demo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cordova-plugin-audioinput not found

aigenseer opened this issue · comments

When I try to use your demo examples, I get the error message: "cordova-plugin-audioinput not found".

I'm using your script in version 0.5.0 with Android 7.0 and cordova 8.0.0.

Could you please give me additional help?

@edimuj: I found the mistake. In the file www/audioInputCapture.js I have adapted the following lines:

var argscheck = require('cordova/argscheck'),
    utils = require('cordova/utils'),
    exec = require('cordova/exec'),
    channel = require('cordova/channel');

to

var exec = require('cordova/exec');

I do not know why the other modules are needed