From d271159ac9c022ea796b14c26770ad18725d06ca Mon Sep 17 00:00:00 2001 From: Callum Leslie Date: Tue, 28 Jun 2022 02:08:11 +0100 Subject: [PATCH] Move back to 550 character limit for Streamlabs Polly --- TTS/streamlabs_polly.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TTS/streamlabs_polly.py b/TTS/streamlabs_polly.py index 8a24364..500cb16 100644 --- a/TTS/streamlabs_polly.py +++ b/TTS/streamlabs_polly.py @@ -28,7 +28,7 @@ voices = [ class StreamlabsPolly: def __init__(self): self.url = "https://streamlabs.com/polly/speak" - self.max_chars = 349 + self.max_chars = 550 self.voices = voices def run(self, text, filepath, random_voice: bool = False):