Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month ago
JSON representation
TTS Plugin for remote Mozilla TTS
- Host: GitHub
- URL: https://github.com/NeonGeckoCom/neon-tts-plugin-mozilla_remote
- Owner: NeonGeckoCom
- License: other
- Archived: true
- Created: 2021-05-20T05:54:22.000Z (over 3 years ago)
- Default Branch: dev
- Last Pushed: 2022-11-10T23:00:41.000Z (about 2 years ago)
- Last Synced: 2024-05-14T18:54:55.157Z (7 months ago)
- Language: Python
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-ovos-plugins - neon-tts-plugin-mozilla_remote
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 MozillaRemoteTTSengine = MozillaRemoteTTS(config={"api_url": "http://0.0.0.0:5002/api/tts"})
engine.get_tts("hello world", "test.wav")
```