Merge pull request #836 from muhammedaksam/develop

Fixing legacy VOICE variables
pull/863/head
Callum Leslie 2 years ago committed by GitHub
commit 10c20987e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -35,9 +35,9 @@ class AWSPolly:
if random_voice:
voice = self.randomvoice()
else:
if not os.getenv("VOICE"):
if not os.getenv("AWS_VOICE"):
return ValueError(
f"Please set the environment variable VOICE to a valid voice. options are: {voices}"
f"Please set the environment variable AWS_VOICE to a valid voice. options are: {voices}"
)
voice = str(os.getenv("AWS_VOICE")).capitalize()
try:

@ -35,9 +35,9 @@ class StreamlabsPolly:
if random_voice:
voice = self.randomvoice()
else:
if not os.getenv("VOICE"):
if not os.getenv("STREAMLABS_VOICE"):
return ValueError(
f"Please set the environment variable VOICE to a valid voice. options are: {voices}"
f"Please set the environment variable STREAMLABS_VOICE to a valid voice. options are: {voices}"
)
voice = str(os.getenv("STREAMLABS_VOICE")).capitalize()
body = {"voice": voice, "text": text, "service": "polly"}

Loading…
Cancel
Save