node-google-text-to-speech

0.1.0 • Public • Published

node-google-text-to-speech

Google Text-To-Speech for node.js

A small library for translating text-to-speech service for google.

Installation

npm install node-google-text-to-speech --save

Usage

 
  var tts = require('node-google-text-to-speech')
 
  tts.translate('en', 'dog', function(result) {
   console.log(result); 
   if(result.success) { //check for success
   var response = { 'audio' : result.data };
   socket.emit('ttsResult', response); //emit the audio to client
   }
  });
 

Release History

  • 0.1.0 Initial release

Dependents (0)

Package Sidebar

Install

npm i node-google-text-to-speech

Weekly Downloads

3

Version

0.1.0

License

MIT

Last publish

Collaborators

  • ashafir