Renamed Config Variable
Renamed streamlabsVoice to PollyVoice
This commit is contained in:
parent
6fd3fc216f
commit
3e1759e5d2
@ -117,7 +117,7 @@ class PollyVoices(Enum):
|
|||||||
|
|
||||||
currentSpeaker = Speaker.GOOGLE_TEXT_TO_SPEECH
|
currentSpeaker = Speaker.GOOGLE_TEXT_TO_SPEECH
|
||||||
fileNameStrategy = FileNameStrategy.CONTENT_BASED
|
fileNameStrategy = FileNameStrategy.CONTENT_BASED
|
||||||
streamlabsVoice = PollyVoices.Justin
|
PollyVoice = PollyVoices.Justin
|
||||||
|
|
||||||
|
|
||||||
botList = ("Nightbot", "StreamElements", "Moobot", "Praxis Bot", "praxis_bot", "MEE6 +", "Nerdy", "Rythm", "Groovy")
|
botList = ("Nightbot", "StreamElements", "Moobot", "Praxis Bot", "praxis_bot", "MEE6 +", "Nerdy", "Rythm", "Groovy")
|
||||||
|
|||||||
2
tts.py
2
tts.py
@ -38,7 +38,7 @@ def create_speech_streamlabs(text: str):
|
|||||||
#Not sure if this approach will work as mp3 on Linux/Mac
|
#Not sure if this approach will work as mp3 on Linux/Mac
|
||||||
path = os.path.join(get_tts_dir(), create_file_name(text, "mp3"))
|
path = os.path.join(get_tts_dir(), create_file_name(text, "mp3"))
|
||||||
if not os.path.exists(path):
|
if not os.path.exists(path):
|
||||||
body = {"voice": config.streamlabsVoice.value, "text": text}
|
body = {"voice": config.PollyVoice.value, "text": text}
|
||||||
resp = requests.post(streamLabsUrl, data=body).json()
|
resp = requests.post(streamLabsUrl, data=body).json()
|
||||||
sound_file_url = resp["speak_url"]
|
sound_file_url = resp["speak_url"]
|
||||||
if sound_file_url is not None:
|
if sound_file_url is not None:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user