Page 1 of 1

Adding speech recognition plugin to list of preloaded plugins

Posted: Wed Jul 29, 2015 2:39 am
by Frank7390035

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!!


Adding speech recognition plugin to list of preloaded plugins

Posted: Thu Jul 30, 2015 11:07 am
by Frank7390035

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


Adding speech recognition plugin to list of preloaded plugins

Posted: Thu Jul 30, 2015 12:18 pm
by Evgene Karachevtsev

Hello Frank,

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


Adding speech recognition plugin to list of preloaded plugins

Posted: Thu Jul 30, 2015 10:37 pm
by Frank7390035

Thank you so much Evgene!


Adding speech recognition plugin to list of preloaded plugins

Posted: Thu Aug 06, 2015 8:01 pm
by maxkatz

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