mirror of
https://github.com/neodyland/sbv2-api.git
synced 2025-12-22 23:49:58 +00:00
9 lines
213 B
Python
9 lines
213 B
Python
import requests
|
|
|
|
res = requests.post(
|
|
"http://localhost:3000/synthesize",
|
|
json={"text": "おはようございます", "ident": "tsukuyomi"},
|
|
)
|
|
with open("output.wav", "wb") as f:
|
|
f.write(res.content)
|