mirror of
https://github.com/alphacep/vosk-server.git
synced 2026-03-09 00:10:18 +08:00
9 lines
180 B
Python
Executable File
9 lines
180 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import requests
|
|
|
|
r = requests.post("https://api.alphacephei.com/tts", data={'text' : "Hello world!"})
|
|
fn = open("tts.wav", "wb")
|
|
fn.write(r.content)
|
|
fn.close()
|