Update streamlabs_polly.py

Fixes issues with git
pull/2003/head
Jason Cameron 9 months ago committed by GitHub
parent 91c2b090cf
commit c704929b2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -44,8 +44,8 @@ class StreamlabsPolly:
)
voice = str(settings.config["settings"]["tts"]["streamlabs_polly_voice"]).capitalize()
body = {"voice": voice, "text": text, "service": "polly"}
headers = {"Referer" : "https://streamlabs.com/" }
response = requests.post(self.url, headers=headers,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