From 1d4dd8d7e42e4fbb17f89e54651a896f60bf7752 Mon Sep 17 00:00:00 2001 From: NenadPantelic Date: Fri, 18 Oct 2019 20:29:11 +0200 Subject: [PATCH] Add dependencies note in text-to-speech file --- TextToSpeech/tts.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/TextToSpeech/tts.py b/TextToSpeech/tts.py index cb48356..0ec61d0 100644 --- a/TextToSpeech/tts.py +++ b/TextToSpeech/tts.py @@ -6,7 +6,10 @@ PATH_TO_AUDIO_DIR = r"audio/" DEFAULT_AUDIO_FILE = PATH_TO_AUDIO_DIR + "temporary.mp3" - +#NOTE: +# install dependencies: +# pip3 install gTTS +# pip3 install playsound class Speaker: def __init__(self, language="en-us"): self._language = language