41 lines
1.5 KiB
Markdown
41 lines
1.5 KiB
Markdown
1. tts服务 https://github.com/remsky/Kokoro-FastAPI
|
||
|
||
git clone https://github.com/remsky/Kokoro-FastAPI.git
|
||
cd Kokoro-FastAPI
|
||
|
||
cd docker/gpu # For GPU support
|
||
# or cd docker/cpu # For CPU support
|
||
docker compose up --build
|
||
|
||
# Models will auto-download, but if needed you can manually download:
|
||
python docker/scripts/download_model.py --output api/src/models/v1_0
|
||
|
||
# Or run directly via UV:
|
||
./start-gpu.sh # For GPU support
|
||
./start-cpu.sh # For CPU support
|
||
|
||
|
||
|
||
2. ASR服务 https://github.com/modelscope/FunASR/blob/main/runtime/docs/SDK_advanced_guide_offline_en_zh.md
|
||
|
||
镜像启动
|
||
通过下述命令拉取并启动FunASR runtime-SDK的docker镜像:
|
||
|
||
sudo docker pull \
|
||
registry.cn-hangzhou.aliyuncs.com/funasr_repo/funasr:funasr-runtime-sdk-en-cpu-0.1.7
|
||
mkdir -p ./funasr-runtime-resources/models
|
||
sudo docker run -p 10097:10095 -it --privileged=true \
|
||
-v $PWD/funasr-runtime-resources/models:/workspace/models \
|
||
registry.cn-hangzhou.aliyuncs.com/funasr_repo/funasr:funasr-runtime-sdk-en-cpu-0.1.7
|
||
服务端启动
|
||
docker启动之后,启动 funasr-wss-server服务程序:
|
||
|
||
cd FunASR/runtime
|
||
nohup bash run_server.sh \
|
||
--download-model-dir /workspace/models \
|
||
--vad-dir damo/speech_fsmn_vad_zh-cn-16k-common-onnx \
|
||
--model-dir damo/speech_paraformer-large_asr_nat-en-16k-common-vocab10020-onnx \
|
||
--punc-dir damo/punc_ct-transformer_cn-en-common-vocab471067-large-onnx > log.txt 2>&1 &
|
||
|
||
# 如果您想关闭ssl,增加参数:--certfile 0
|
||
服务端详细参数介绍可参考服务端用法详解 |