initial commit

This commit is contained in:
zuoban
2024-04-17 14:14:19 +08:00
commit f2455f92b6
14 changed files with 555 additions and 0 deletions

17
templates/index.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TTS</title>
</head>
<body>
<h1> 支持接口 </h1>
<ul>
<li>语言合成: /tts?t=[text]&v=[voice]&r=[rate]&p=[pitch]&o=[outputFormat] <a
href="/tts?t=hello, world&v=zh-CN-XiaoxiaoMultilingualNeural&r=0&p=0&o=audio-24khz-48kbitrate-mono-mp3">try</a>
</li>
<li> 声音列表: /voices?l=[locale, zh-CN] <a
href="/voices?l=zh">try</a></li>
</ul>
</body>
</html>