1 Star 9 Fork 8

KuangDD/ttskit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test.py 879 Bytes
一键复制 编辑 原始数据 按行查看 历史
KuangDD 提交于 2021-10-03 20:42 . v0.2.1
#!usr/bin/env python
# -*- coding: utf-8 -*-
# author: kuangdd
# date: 2020/2/23
"""
"""
def test_sdk_api():
from ttskit import sdk_api
wav = sdk_api.tts_sdk('文本', audio='24')
def test_cli_api():
from ttskit import cli_api
args = cli_api.parse_args()
cli_api.tts_cli(args)
def test_web_api():
from ttskit import web_api
web_api.app.run(host='0.0.0.0', port=2718, debug=False)
# 用POST或GET方法请求:http://localhost:2718/tts,传入参数text、audio、speaker。
# 例如GET方法请求:http://localhost:2718/tts?text=这是个例子&audio=2
def test_http_server():
from ttskit import http_server
http_server.start_sever()
# 打开网页:http://localhost:9000/ttskit
if __name__ == "__main__":
print(__file__)
# test_sdk_api()
# test_cli_api()
# test_web_api()
test_http_server()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/kuangdd/ttskit.git
git@gitee.com:kuangdd/ttskit.git
kuangdd
ttskit
ttskit
main

搜索帮助