KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
SpeechSynthesisServer
★ 12
Open GitHub ↗
语音合成服务
Download README (.md)
Explore Similar Repositories
gplayapi-go
:
Small google play api wrapper in go.
Distributed-Online-Car-Hailing-Platform
:
Spring Cloud Web后端,分布式架构网约车平台后端原型系统设计与实现
ToDo
:
A simple To Do list app written in SwiftUI
deforming-techniques
:
Implementation of 2D Grid Deformation and Free-Form Deformation (FFD) algorithms with python
graphql-authz
:
graphql-authz is a Casbin authorization middleware for GraphQL.js
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
SpeechSynthesisServer
?
Download (.md)
# SpeechSynthesisServer # 语音合成服务,支持docker部署 ## 源码使用 ```shell git submodule init git submodule update # python3 pip3 install -r requirement.txt pip3 install -r speech_synthesis/requirement.txt python3 app.py ``` ## 如何更新为remote submodule ``` git submodule update --remote --recursive ``` ## 打包成docker镜像 ```docker docker build -t speech_synthesis_server:latest . docker run -d --name speech_syntheis_server -p 8888:8888 speech_synthesis_server:latest ``` ## 使用已经打包好的docker镜像 ``` docker pull registry.cn-beijing.aliyuncs.com/wxxhub/speech_synthesis:latest docker run -d --name speech_synthesis -p 8888:8888 registry.cn-beijing.aliyuncs.com/wxxhub/speech_synthesis:latest ``` ## 语音合成使用 ``` 浏览器访问 127.0.0.1:8888 #或者终端使用curl,(windows终端因为编码不是utf-8问题可能失败, 将终端改为utf-8即可) curl -X POST -F content="你好世界" 127.0.0.1:8889/speech_synthesis -o test.wav ```