google-home-audio-tts

0.1.5 • Public • Published

Google Home Audio & TTS

GitHub version NPM version Dependency version

Library to play audio and text via TTS on Google Home devices.

Table Of Contents


Installation

Use npm to install this module:

$ npm install google-home-audio-tts

Usage

The library uses callback-style. Just initialize a new instance for a single device, it can be reused at any time.

let GoogleHomeAVT = require('google-home-audio-tts');
let device = new GoogleHomeAVT('192.168.2.34', 'en');
 
// play text via tts
device.tts('Hello!', result => {
    // result:
    // - media object on success
    // - false on error
});
 
// play audio
device.audio('http://domain.com/file.mp3', result => {
    // result:
    // - media object on success
    // - false on error
});

Configuration

Some options can be changed on any time:

device.setIp('192.168.2.123'); // change ip address
device.setLanguage('de'); // set language for tts
device.setVolume(1); // change volume before playback, value between 0 and 1
device.setRestoreVolume(true); // restore original volume after playback
device.setStreamType("BUFFERED"); // stream time, BUFFERED or LIVE
device.setTtsTimeout(1000); // set timeout for tts request
device.setTtsSpeed(1); // set tts playback speed

Limitations

  • This library explicit don't support MDNS! Use fixed IP addresses for your devices. MDNS causes problems on different systems. If there is really need to use MDNS, just add this before by yourself and pass the IP to this library.

  • TTS texts has a limit of 200 characters.

Bugs / Feature request

Please report bugs and feel free to ask for new features directly on GitHub.

License

Minoss is dual-licensed under MIT and GPL-2.0 license.

Donation

You like to support me?
You appreciate my work?
You use it in commercial projects?

Feel free to make a little donation! 😉

Package Sidebar

Install

npm i google-home-audio-tts

Weekly Downloads

0

Version

0.1.5

License

(MIT OR GPL-2.0)

Unpacked Size

9.04 kB

Total Files

3

Last publish

Collaborators

  • eisbehr