Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/NeonGeckoCom/neon-tts-plugin-mozilla_remote

TTS Plugin for remote Mozilla TTS
https://github.com/NeonGeckoCom/neon-tts-plugin-mozilla_remote

Last synced: 2 months ago
JSON representation

TTS Plugin for remote Mozilla TTS

Awesome Lists containing this project

README

        

# 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")
```