rhasspy / rhasspy-tts-wavenet-hermes

MQTT service for text to speech using Google's Wavenet and the Hermes protocol
MIT License
1 stars 2 forks source link

Rhasspy TTS Hermes MQTT Service

Continous Integration GitHub license

Implements hermes/tts functionality from Hermes protocol using Google Wavenet.

See documentation for more details.

Use --play-command aplay to play speech locally instead of using hermes/audioServer<siteId>/playBytes.

Installing

Clone the repository and create a virtual environment:

$ git clone https://github.com/rhasspy/rhasspy-tts-wavenet-hermes.git
$ cd rhasspy-tts-wavenet-hermes
$ ./configure
$ make
$ make install

Command-Line Options

usage: rhasspy-tts-wavenet-hermes [-h] --credentials-json CREDENTIALS_JSON
                                  --cache-dir CACHE_DIR [--voice VOICE]
                                  [--sample-rate SAMPLE_RATE]
                                  [--play-command PLAY_COMMAND] [--host HOST]
                                  [--port PORT] [--username USERNAME]
                                  [--password PASSWORD] [--tls]
                                  [--tls-ca-certs TLS_CA_CERTS]
                                  [--tls-certfile TLS_CERTFILE]
                                  [--tls-keyfile TLS_KEYFILE]
                                  [--tls-cert-reqs {CERT_REQUIRED,CERT_OPTIONAL,CERT_NONE}]
                                  [--tls-version TLS_VERSION]
                                  [--tls-ciphers TLS_CIPHERS]
                                  [--site-id SITE_ID] [--debug]
                                  [--log-format LOG_FORMAT]

optional arguments:
  -h, --help            show this help message and exit
  --credentials-json CREDENTIALS_JSON
                        Path to Google Wavenet credentials JSON file
  --cache-dir CACHE_DIR
                        Directory to cache WAV files
  --voice VOICE         Chosen voice (default: en-US-Wavenet-C)
  --sample-rate SAMPLE_RATE
                        Chosen sample rate of the outpt wave sample (default:
                        22050)
  --play-command PLAY_COMMAND
                        Command to play WAV data from stdin (default: publish
                        playBytes)
  --host HOST           MQTT host (default: localhost)
  --port PORT           MQTT port (default: 1883)
  --username USERNAME   MQTT username
  --password PASSWORD   MQTT password
  --tls                 Enable MQTT TLS
  --tls-ca-certs TLS_CA_CERTS
                        MQTT TLS Certificate Authority certificate files
  --tls-certfile TLS_CERTFILE
                        MQTT TLS certificate file (PEM)
  --tls-keyfile TLS_KEYFILE
                        MQTT TLS key file (PEM)
  --tls-cert-reqs {CERT_REQUIRED,CERT_OPTIONAL,CERT_NONE}
                        MQTT TLS certificate requirements (default:
                        CERT_REQUIRED)
  --tls-version TLS_VERSION
                        MQTT TLS version (default: highest)
  --tls-ciphers TLS_CIPHERS
                        MQTT TLS ciphers to use
  --site-id SITE_ID     Hermes site id(s) to listen for (default: all)
  --debug               Print DEBUG messages to the console
  --log-format LOG_FORMAT
                        Python logger format