From 58705a3a08963573b14603f330fd7922bb97f7d1 Mon Sep 17 00:00:00 2001 From: adrianaryaputra Date: Sun, 31 Jul 2022 18:36:18 +0700 Subject: [PATCH] set AWS Polly max_chars to 3000 --- TTS/aws_polly.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TTS/aws_polly.py b/TTS/aws_polly.py index efd762b..eac5884 100644 --- a/TTS/aws_polly.py +++ b/TTS/aws_polly.py @@ -26,7 +26,7 @@ voices = [ class AWSPolly: def __init__(self): - self.max_chars = 0 + self.max_chars = 3000 self.voices = voices def run(self, text, filepath, random_voice: bool = False):