From 0f3489f5cbcea80f5a5b967cf640d2ed9d928110 Mon Sep 17 00:00:00 2001 From: jyz0501 Date: Wed, 7 Oct 2020 21:44:16 +0800 Subject: [PATCH] Baidu TTS: support more voices (#41393) Co-authored-by: Paulus Schoutsen --- homeassistant/components/baidu/tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/baidu/tts.py b/homeassistant/components/baidu/tts.py index 5a14fc78020..72694248fa1 100644 --- a/homeassistant/components/baidu/tts.py +++ b/homeassistant/components/baidu/tts.py @@ -12,7 +12,7 @@ _LOGGER = logging.getLogger(__name__) SUPPORTED_LANGUAGES = ["zh"] DEFAULT_LANG = "zh" -SUPPORTED_PERSON = [0, 1, 3, 4, 5, 103, 106, 110, 111] +SUPPORTED_PERSON = [0, 1, 3, 4, 5, 103, 106, 110, 111, 5003, 5118] CONF_APP_ID = "app_id" CONF_SECRET_KEY = "secret_key"