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.

82 lines
2.0 KiB
Markdown

A streaming digital human based on the Ernerf model realize audio video synchronous dialogue. It can basically achieve commercial effects.
基于ernerf模型的流式数字人实现音视频同步对话。基本可以达到商用效果
2 years ago
## Installation
2 years ago
2 years ago
Tested on Ubuntu 18.04, Python3.10, Pytorch 1.12 and CUDA 11.3
2 years ago
### Install dependency
```bash
2 years ago
conda create -n nerfstream python=3.10
conda install pytorch==1.12.1 torchvision==0.13.1 cudatoolkit=11.3 -c pytorch
conda activate nerfstream
2 years ago
pip install -r requirements.txt
pip install "git+https://github.com/facebookresearch/pytorch3d.git"
pip install tensorflow-gpu==2.8.0
2 years ago
```
linux cuda环境搭建可以参考这篇文章 https://zhuanlan.zhihu.com/p/674972886
2 years ago
安装rtmpstream库
参照 https://github.com/lipku/python_rtmpstream
2 years ago
## Run
2 years ago
### 运行rtmpserver (srs)
2 years ago
```
docker run --rm -it -p 1935:1935 -p 1985:1985 -p 8080:8080 registry.cn-hangzhou.aliyuncs.com/ossrs/srs:5
2 years ago
```
### 启动:
2 years ago
```python
python app.py
2 years ago
```
如果访问不了huggingface在运行前
2 years ago
```
export HF_ENDPOINT=https://hf-mirror.com
2 years ago
```
运行成功后用vlc访问rtmp://serverip/live/livestream
2 years ago
### 网页端数字人播报输入文字
安装并启动nginx
2 years ago
```
apt install nginx
nginx
2 years ago
```
修改echo.html中websocket和视频播放地址将serverip替换成实际服务器ip
然后将echo.html和mpegts-1.7.3.min.js拷到/var/www/html下
2 years ago
启动数字人
2 years ago
```python
python app.py
```
用浏览器打开http://serverip/echo.html在文本框输入任意文字提交。数字人播报该段文字
2 years ago
## Data flow
![](/assets/dataflow.png)
2 years ago
## 数字人模型文件
可以替换成自己训练的模型(https://github.com/Fictionarry/ER-NeRF)
2 years ago
```python
.
├── data
│ ├── data_kf.json
2 years ago
│ ├── pretrained
│ └── └── ngp_kg.pth
```
## TODO
- 添加chatgpt实现数字人对话
- 声音克隆
- 数字人静音时用一段视频代替
2 years ago
如果本项目对你有帮助帮忙点个star。也欢迎感兴趣的朋友一起来完善该项目。
Email: lipku@foxmail.com