New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

google-home-audio-tts

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-home-audio-tts

Plays Audio and Text via TTS on Google Home devices.

  • 0.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
increased by40%
Maintainers
1
Weekly downloads
 
Created
Source

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! :wink:

Keywords

FAQs

Package last updated on 24 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc