diff --git a/.env.template b/.env.template index b66ec3e..d5e82fd 100644 --- a/.env.template +++ b/.env.template @@ -32,8 +32,8 @@ MAX_COMMENT_LENGTH="500" OPACITY="1" # see TTSwrapper.py for all valid options -VOICE="en_us_001" # e.g. en_us_002 +VOICE="" # e.g. en_us_002 # IN-PROGRESS - not yet implemented -TTsChoice="TikTok" # todo add docs +TTsChoice="polly" # todo add docs STORYMODE="False" diff --git a/TTS/TikTok.py b/TTS/TikTok.py index 79d472a..a299216 100644 --- a/TTS/TikTok.py +++ b/TTS/TikTok.py @@ -142,6 +142,3 @@ class TikTok: # TikTok Text-to-Speech Wrapper if ok_or_good == 1: # 1/10 chance of ok voice return random.choice(voices) return random.choice(human) # 9/10 chance of good voice - - -TikTok().tts('Hello World', '../TTS/hello.mp3')