gtts-ml

2.0.2 • Public • Published

gtts-ml

Google Text-to-Speech for NodeJS (Unofficial API)

How to install

npm install gtts-ml

How to use

1. Save audio file

var gtts-ml = require('gtts-ml')('ml');
var path = require('path');
var filepath = path.join(__dirname, 'i-love-you.wav');

gtts.save(filepath, 'I love you', function() {
  console.log('save done');
})

2. Pipe directly to router response

Example with ExpressJS Router

var express = require('express');
var router = express.Router();
var gtts-ml = require('gtts-ml')('ml');

router.get('/speech', function(req, res) {
  res.set({'Content-Type': 'audio/mpeg'});
  gtts.stream(req.query.text).pipe(res);
})

3. Create a standalone server

var gtts-ml = require('gtts-ml')('ml');
gtts.createServer(8668);

4. Command line usage

# create file: helllo-world.wav
gtts-ml ml Hello World

# create server listen port 8668
# (in Malayalam by default)
gtts-ml serve 8668 ml

API for standalone server

GET /?text={your-text}

  • stream audio of speech with default language

GET /?text={your-text}?lang={lang}

  • stream audio of speech with specific language

Package Sidebar

Install

npm i gtts-ml

Weekly Downloads

1

Version

2.0.2

License

Apache-2.0

Unpacked Size

19.4 kB

Total Files

6

Last publish

Collaborators

  • terror-boy