From 792a149834a892baa4556c276d42469d2ba3298f Mon Sep 17 00:00:00 2001 From: NeonJarbas <59943014+NeonJarbas@users.noreply.github.com> Date: Tue, 2 Aug 2022 18:29:15 +0100 Subject: [PATCH] add "offline" metadata key (#10) Co-authored-by: jarbasai --- ovos_tts_plugin_mimic2/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ovos_tts_plugin_mimic2/__init__.py b/ovos_tts_plugin_mimic2/__init__.py index 1f0319b..41de4dc 100755 --- a/ovos_tts_plugin_mimic2/__init__.py +++ b/ovos_tts_plugin_mimic2/__init__.py @@ -256,8 +256,8 @@ def get_tts_class(self): Mimic2TTSPluginConfig = { "en-us": [ - {"voice": "kusal", "gender": "male", "display_name": "Kusal"}, - {"voice": "nancy", "gender": "female", "display_name": "Nancy"}, - {"voice": "ljspeech", "gender": "female", "display_name": "LJSpeech"} + {"voice": "kusal", "gender": "male", "display_name": "Kusal", "offline": False}, + {"voice": "nancy", "gender": "female", "display_name": "Nancy", "offline": False}, + {"voice": "ljspeech", "gender": "female", "display_name": "LJSpeech", "offline": False} ] }