fix: accidentally left the voice hardcoded to brian

pull/534/head
Jason 2 years ago
parent 63ca264dda
commit 9859e4a0bc

@ -76,7 +76,7 @@ class POLLY:
chunkId = 0 chunkId = 0
for chunk in chunks: for chunk in chunks:
body = {'voice': 'Brian', 'text': chunk} body = {'voice': voice, 'text': chunk}
resp = requests.post(self.url, data=body) resp = requests.post(self.url, data=body)
voice_data = requests.get(resp.json()['speak_url']) voice_data = requests.get(resp.json()['speak_url'])
with open(filename.replace(".mp3", f"-{chunkId}.mp3"), "wb") as out: with open(filename.replace(".mp3", f"-{chunkId}.mp3"), "wb") as out:

Loading…
Cancel
Save