Metadata-Version: 2.1
Name: neon-tts-plugin-mozilla-remote
Version: 0.1.6a2
Summary: A Mozilla TTS plugin for Neon
Home-page: https://github.com/NeonGeckoCom/neon-tts-plugin-mozilla_remote
Author: Neongecko
Author-email: developers@neon.ai
License: BSD 3
Keywords: mycroft plugin tts
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: ovos-plugin-manager (~=0.0)

# NeonAI Mozilla TTS Plugin
[Mycroft](https://mycroft-ai.gitbook.io/docs/mycroft-technologies/mycroft-core/plugins) compatible
TTS Plugin for Remote Mozilla Text-to-Speech. Note that this module requires a local or remote API server to be available.

# Configuration:

using the mycroft.conf

```json
"tts": {
    "module": "mozilla_remote",
    "mozilla_remote": {
      "api_url": "http://0.0.0.0:5002/api/tts"
    }
}
```

using the neon config

```yaml
tts:
    module: mozilla_remote
    mozilla_remote: {"api_url": "http://0.0.0.0:5002/api/tts"}
```

## Usage

Standalone usage

```python
from neon_tts_plugin_mozilla_remote import MozillaRemoteTTS

engine = MozillaRemoteTTS(config={"api_url": "http://0.0.0.0:5002/api/tts"})
engine.get_tts("hello world", "test.wav")
```

