Merge pull request #1966 from Bastiy/patch-4

streamlabspolly_fix.py
pull/2003/head
Jason Cameron 2 years ago committed by GitHub
commit 91c2b090cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -44,7 +44,8 @@ class StreamlabsPolly:
)
voice = str(settings.config["settings"]["tts"]["streamlabs_polly_voice"]).capitalize()
body = {"voice": voice, "text": text, "service": "polly"}
response = requests.post(self.url, data=body)
headers = {"Referer" : "https://streamlabs.com/" }
response = requests.post(self.url, headers=headers,data=body)
if not check_ratelimit(response):
self.run(text, filepath, random_voice)

Loading…
Cancel
Save