Open Merwan1010 opened 5 years ago
It doesn't seem to work either on an emulator or the browser. The point of the plugin is mainly to enable audio capture on iOS devices and older Android devices that haven't support for getUserMedia as most modern desktop browsers do.
Actually its working fine on ios emulator for me, on android emulator i have a mute microphone but maybe this is just some settings for the emulator. Thanks for your answer, i will use a different approach for browser.
Would be so awesome to make it work on the browser. It'll be so cool to have one codebase for all really.
@edimuj maybe you'd accept a little donation to make it work?
@numerized well time is more of the issue, but donations are of course always happily accepted 🎁😊
Anyway, I will try to look into this in the coming weeks. Christmas is always a good time to do some housekeeping.
Cool! :)
It tries to do string replacement on fileURL
, which is a problem if fileURL
is null
// AudioInputCaptureProxy.js
96 fileUrl = opts[5] || fileUrl;
97 // the URL must be converted to a cdvfile:... URL to ensure it's readable from the outside
98 fileUrl = fileUrl.replace("filesystem:file:///", "cdvfile://localhost/");
Hi,
I have a problem really similar to this post : https://github.com/edimuj/cordova-plugin-audioinput/issues/85
The plugin is working well on my android device but when i do
ionic cordova run browser
and load the tab, i have this error in the console :Here is the code in the ts file of the tab4 component :
Do you know what cause the error ?
Thank you