Update scraper/voicevox.py
Browse files- scraper/voicevox.py +3 -1
scraper/voicevox.py
CHANGED
@@ -5,7 +5,9 @@ import time
|
|
5 |
class StatusError(Exception):
|
6 |
pass
|
7 |
|
8 |
-
def synthesis(text, speaker =
|
|
|
|
|
9 |
url = f"https://api.tts.quest/v3/voicevox/synthesis?text={text}&speaker={speaker}"
|
10 |
resp = requests.get(url)
|
11 |
resp.raise_for_status()
|
|
|
5 |
class StatusError(Exception):
|
6 |
pass
|
7 |
|
8 |
+
def synthesis(text, speaker = None):
|
9 |
+
if status is None:
|
10 |
+
status = 1
|
11 |
url = f"https://api.tts.quest/v3/voicevox/synthesis?text={text}&speaker={speaker}"
|
12 |
resp = requests.get(url)
|
13 |
resp.raise_for_status()
|