rull commited on
Commit
32440f5
·
verified ·
1 Parent(s): 045e664

Update scraper/voicevox.py

Browse files
Files changed (1) hide show
  1. 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 = 1):
 
 
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()