Frank7390035
Posts: 0
Joined: Thu Feb 19, 2015 1:37 am

Adding speech recognition plugin to list of preloaded plugins

Would it be possible to add this speech recognition plugin to the directory of public plugins available in Appery?

https://github.com/macdonst/SpeechRec...

Thank you!!

Frank7390035
Posts: 0
Joined: Thu Feb 19, 2015 1:37 am

Adding speech recognition plugin to list of preloaded plugins

Update:

if you need to embed speech recognition in appery just use this javascript, without the need to install anything extra:
// capture callback
var captureSuccess = function(mediaFiles) {
var i, path, len;
for (i = 0, len = mediaFiles.length; i < len; i += 1) {
path = mediaFiles.fullPath;
alert("found");
}
};

// capture error callback
var captureError = function(error) {
navigator.notification.alert('Error code: ' + error.code, null, 'Capture Error');
alert(error.code);
};

// start audio capture
navigator.device.capture.captureAudio(captureSuccess, captureError, {limit:2});

Evgene Karachevtsev
Posts: 12
Joined: Mon Apr 28, 2014 1:12 pm

Adding speech recognition plugin to list of preloaded plugins

Hello Frank,

Thank you for the update, we passed your request to our development team.

Frank7390035
Posts: 0
Joined: Thu Feb 19, 2015 1:37 am

Adding speech recognition plugin to list of preloaded plugins

Thank you so much Evgene!

maxkatz
Posts: 0
Joined: Fri Aug 13, 2010 3:24 pm

Adding speech recognition plugin to list of preloaded plugins

We are working on a feature that will allow you to add any Cordova plugin via a wizard in the App Builder. This feature is coming up sometime in September

Return to “Issues”