From e1d3e04fbbe9d9180f3aa58a62836af5f24b116e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Trellu?= Date: Tue, 30 Jan 2024 21:17:43 -0500 Subject: [PATCH] [plugins] Update the list for phal, stt and tts --- docs/getting-started/docker/plugins/phal.md | 1 + docs/getting-started/docker/plugins/stt.md | 1 + docs/getting-started/docker/plugins/tts.md | 6 ++---- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/getting-started/docker/plugins/phal.md b/docs/getting-started/docker/plugins/phal.md index 0f27a76..95cfaa1 100644 --- a/docs/getting-started/docker/plugins/phal.md +++ b/docs/getting-started/docker/plugins/phal.md @@ -15,6 +15,7 @@ The [Plugin based Hardware Abstraction Layer](../../../about/glossary/components The `ovos_phal` container comes with few pre-installed PHAL plugins such as: - `ovos-PHAL-plugin-alsa` controls system volume with [ALSA](https://en.wikipedia.org/wiki/Advanced_Linux_Sound_Architecture) +- `ovos-PHAL-plugin-ipgeo` provides geolocation information via the message bus - `ovos-PHAL-plugin-system` handles bus events to interact with the operating system If the existing PHAL plugins are not enough then you can install yours by following the same principle as for the [STT plugins](./stt.md) by adding a `phal.list` or `phal_admin.list` files within the `~/ovos/config/` directory, this file acts as a Python `requirements.txt` file. diff --git a/docs/getting-started/docker/plugins/stt.md b/docs/getting-started/docker/plugins/stt.md index 847eab3..b827a51 100644 --- a/docs/getting-started/docker/plugins/stt.md +++ b/docs/getting-started/docker/plugins/stt.md @@ -8,6 +8,7 @@ The [Speech-To-Text](../../../about/glossary/terms.md#speech-to-text-stt) plugin The `ovos_listener` container comes with few pre-installed STT plugins such as: +- `ovos-stt-plugin-chromium` uses the Google Chrome browser API - `ovos-stt-plugin-server` allows you to reach an external STT service - `ovos-stt-plugin-vosk` is an offline STT service diff --git a/docs/getting-started/docker/plugins/tts.md b/docs/getting-started/docker/plugins/tts.md index 4e10f82..1879acf 100644 --- a/docs/getting-started/docker/plugins/tts.md +++ b/docs/getting-started/docker/plugins/tts.md @@ -8,9 +8,7 @@ The [Text-To-Speech](../../../about/glossary/terms.md#text-to-speech-tts) plugin The `ovos_audio` container comes with few pre-installed TTS plugins such as: -- `ovos-tts-plugin-mimic` is the original Mycroft AI TTS with the iconic Alan Pope's voice -- `ovos-tts-plugin-mimic2` is the cloud based version hosted on Mycroft AI infrastructure -- `ovos-tts-plugin-mimic3-server` is the latest Mycroft AI TTS engine +- `ovos-tts-plugin-polly` is the Amazon Polly TTS server _(authentication required)_ - `ovos-tts-plugin-server` allows you to reach an external TTS service If the existing TTS plugins are not enough then you can install yours by following the same principle as for the [skills](../installation/skills.md) by adding an `audio.list` file within the `~/ovos/config/` directory, this file acts as a Python `requirements.txt` file. @@ -24,7 +22,7 @@ When the `ovos_audio` container starts, it will look for this file and install t ```ini title="~/ovos/config/audio.list" ovos-tts-plugin-marytts==0.0.1a1 # Specific plugin version on PyPi neon-tts-plugin-mozilla-remote # Latest plugin version on PyPi -git+https://github.com/NeonGeckoCom/neon-tts-plugin-polly.git@fix/whatever # Specific branch of a plugin on GitHub +git+https://github.com/OpenVoiceOS/ovos-tts-plugin-piper.git@fix/whatever # Specific branch of a plugin on GitHub ``` The `ovos_audio` container must be restarted if a change occurs in the `audio.list` file.