You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
1.8 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

好的,以下是两个服务的启动命令已统一格式、全部换行的 `readme.txt` 内容:
---
# 数字人项目使用说明
本项目包含两个主要模块LiveTalking 和 GPT-SoVITS。以下为各模块的启动方法及服务器信息。
---
## 一、LiveTalking 启动方法
* **服务器地址**`192.168.10.96`
* **SSH 登录信息**:用户 `root`,密码 `#Yaxin0504`
### 启动步骤:
```bash
# 登录服务器
ssh root@192.168.10.96
# 进入项目目录
cd /root/fpt/LiveTalking
# 激活 conda 环境
conda activate nerfstream
# 启动服务(后台运行)
nohup python app.py \
--transport webrtc \
--model wav2lip \
--avatar_id model_4_10 \
--tts gpt-sovits \
--TTS_SERVER http://192.168.10.113:9880 \
> log/livetalking.log 2>&1 &
# 实时查看日志(可选)
tail -n 50 -f log/livetalking.log
```
---
## 二、GPT-SoVITS 启动方法
* **服务器地址**`192.168.10.113`端口222
* **SSH 登录信息**:用户 `root`,密码 `1`
### 启动步骤:
```bash
# 登录服务器
ssh -p 222 root@192.168.10.113
# 进入项目目录
cd /mnt/workspace/GPT-SoVITS
# 激活 conda 环境
conda activate gpt-sovits
# 启动服务(后台运行)
nohup python api.py \
-dr "input/doubao.wav" \
-dt "刚进直播间的宝子们,左上角先点个关注,点亮咱们家的粉丝灯牌!我是你们的主播陈婉婉,今天给大家准备了超级重磅的福利" \
-dl "zh" \
> log/gptsovits.log 2>&1 &
# 实时查看日志(可选)
tail -n 50 -f log/gptsovits.log
```
---
如需关闭服务,可使用如下命令查找并终止进程:
```bash
ps -ef | grep python
kill <PID>
```
如需进一步支持,请联系相关技术人员。
---
如果需要导出为 `.txt` 或添加英文版,我也可以帮你继续整理。