Files
sbv2-api/test.py
tuna2134 f10eef2211 fix bug
2024-09-10 14:10:37 +00:00

8 lines
187 B
Python

import requests
res = requests.post('http://localhost:3000/synthesize', json={
"text": "おはようございます",
})
with open('output.wav', 'wb') as f:
f.write(res.content)