README
Georgian text to speech module
Installation
$ npm install --save geospeech
Usage
const geospeech = require('geo-speech');
const audio = geospeech.speak('საქართველო');
// it will return binary data
// also can save as file in default root directory or custom path ,Notice : path will need to be true ,because it can't create
const audio = geospeech.speak('საქართველო',{save:true}); //
// output:Boolean (false,true), console.log : The file:4bf83aa0-9723-4dbb-8540-43de1d2e16f9.wav has been saved!
//----------------------------------------------------------------
const audio = geospeech.speak('საქართველო',{save:true,path:'./files/audio'});
// output:Boolean (false,true), console.log : The file:./files/audio/4bf83aa0-9723-4dbb-8540-43de1d2e16f9.wav has been saved!
License
ISC © Mikheil Nadiradze