ysr-cgi
v0.0.3
Published
AJAX CGI for yandex-recognizer
Downloads
5
Readme
ysr-cgi
AJAX CGI for yandex-recognizer
Questions and Bug Reports
- mailing list: [email protected]
Installation
Install the ysr-cgi and it's dependencies by executing
the following NPM
command.
npm install ysr-cgi --save
Troubleshooting
The ysr-cgi depends on several other packages. These are.
- yandex-recognizer
Ensure, that your user has write permission to wherever the node modules are being installed.
QuickStart
Simple AJAX request in ExtJS style:
Ext.Ajax.request({
url: 'ysr',
method: 'GET',
params: { file: audioFileName },
success: function (res, opts) {
var recognizedText = res.responseText;
},
failure: function (res, opts) {...}
});