A Ultralight Digital Human model can run on mobile devices in real time!!!
一个能在移动设备上实时运行的数字人模型,据我所知,这应该是第一个开源的如此轻量级的数字人模型。
Lets see the demo.⬇️⬇️⬇️
先来看个demo⬇️⬇️⬇️
如果你视频中声音质量比较差的话,效果大概率不会好。声音质量比较差指的是:1)存在难以忽略的噪声。2)在空旷的房间里录制的视频有回音。3)视频人声不清楚。建议录制视频时候使用外接麦克风,不用拍摄设备自带的麦克风。我自己尝试了声音清晰的情况,不论是wenet还是hubert,效果都非常棒。
使用流式推理时,建议把静音的图片和对应的关键点放在单独的目录里,img_inference和lms_inference里。
我在代码里加了一些注释,方便大家二次开发
因为一般用到流式推理的场景一般对实时性要求比较高,所以这里我只写了wenet作为音频编码器的情况(实测在2080这样的机器上多个并发时每帧音频处理+视频处理耗时10ms以内,需要将模型转为onnx)。并且根据每个人的使用场景不同,重构代码是必须的,所以我没有做太多的代码优化,这里只提供一些思路给大家参考,如果需要用到hubert作为音频编码器,可以参考其他github的项目。至于C++的推理方法。我大致试了一下,当前方法在ios近两年的设备上实时跑是没什么问题的,大家可以根据dihuman_run.py里的逻辑做翻译,我这里现在有一种能让这个模型跑在更多设备上的方法(效率更高,略微牺牲效果),有人在商用,暂时不做开源。如果大家在使用过程中发现什么问题,请提issue,我会尽力维护这个项目。
Code maintenance / 代码维护
The earlier codebase had several bugs. After going through open issues, I fixed a number of problems and refactored and optimized the project together with cc. Thanks to everyone who reported problems.
早期版本里确实存在一些 bug。近期我对照 issue 做了修复,并与 cc 一起整理了代码,感谢各位在 issue 里的反馈。
SyncNet removed / 移除 SyncNet
I tried many setups with SyncNet auxiliary loss; in practice it barely helps visual quality or lip-sync in this pipeline (aligned with earlier community feedback). I removed SyncNet-related code and docs to keep the repo simpler.
我做过大量 SyncNet 相关实验,在本项目里它对最终观感与口型同步的提升非常有限(与此前 issue 里的讨论一致),因此我已移除全部 SyncNet 相关代码与文档,训练流程更干净。
What I'm working on / 我近期的方向
-
Non-personalized digital human — Unlike this repo (train a dedicated model per person from their video), I'm exploring a non-personal talking-head: one model not bound to a single identity, without per-user fine-tuning on a specific face. Still in progress; not quite there yet.
-
Ultra-light streaming variant (coming soon) — I redesigned the audio encoder and image codec; combined audio + UNet model size under ~1M, faster inference, plus streaming tricks I added for smoother on-device playback. I will open-source this branch.
-
非个性化数字人 — 与本仓库「每人一段视频、训一个专属模型」的 personal 路线不同,我在探索非个性化方案:模型不绑定某一个具体人物,无需为每个人单独训练一套权重。还在打磨,离可用还有一段距离。
-
超轻量流式版本(即将开源) — 我重新设计了音频编码器与图像编解码结构,audio + UNet 两个模型的总体积控制在 1M 以内,推理更快;流式推理里我也加了一些 trick,移动端更顺滑。这个版本已经有一些成果了,我会将该版本单独开源。
-
Video generation — looking for advice / 视频生成(欢迎交流) — I've been working on video generation lately. If you have hands-on experience, I'd love to hear from you. Two pain points right now: (1) temporal smoothness — outputs often feel uneven (speeding up and slowing down, sometimes frame drops); (2) very long videos — when I split generation into many segments, end-to-end quality is hard to control. Open an issue or email me at anqi_a@yeah.net.
-
视频生成(欢迎交流) — 我最近在做视频生成相关工作,有相关经验的朋友欢迎指点。目前比较困扰我的有两点:(1)流畅度 — 生成的视频常会忽快忽慢,甚至出现跳帧;(2)超长视频 — 分成若干片段生成时,整体质量往往很难把控。(3)很多其他问题,我一时想不起来了欢迎在 issue 留言,或发邮件至 anqi_a@yeah.net。
It's so easy to train your own digital human.I will show you step by step.
训练一个你自己的数字人非常简单,我将一步步向你展示。
conda create -n dh python=3.10
conda activate dh
conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 pytorch-cuda=11.7 -c pytorch -c nvidia
conda install mkl=2024.0
pip install opencv-python
pip install transformers
pip install numpy==1.23.5
pip install soundfile
pip install librosa
pip install onnxruntimeI only ran on pytorch==1.13.1, Other versions should also work.
我是在1.13.1版本的pytorch跑的,其他版本的pytorch应该也可以。
Download wenet encoder.onnx from https://drive.google.com/file/d/1e4Z9zS053JEWl6Mj3W9Lbc9GDtzHIg6b/view?usp=drive_link
and put it in data_utils/
Prepare your video, 3~5min is good. Make sure that every frame of the video has the person's full face exposed and the sound is clear without any noise, put it in a new folder.I will provide a demo video.
准备好你的视频,3到5分钟的就可以,必须保证视频中每一帧都有整张脸露出来的人物,声音清晰没有杂音,把它放到一个新的文件夹里面。我会提供一个demo视频,来自康辉老师的口播,侵删。
First, extract the audio features. I'm using 2 different extractors from wenet and hubert, thank them for their great work.
wenet的代码和与训练模型来自:https://github.com/Tzenthin/wenet_mnn
首先要提取音频特征,我用了两个不同的特征提取器,分别是 wenet 和 hubert,感谢他们。
When you using wenet, you neet to ensure that your video frame rate is 20, and for hubert,your video frame rate should be 25.
如果你选择使用wenet的话,你必须保证你视频的帧率是20fps,如果选择hubert,视频帧率必须是25fps。
In my experiments, hubert performs better, but wenet is faster and can run in real time on mobile devices.
在我的实验中,hubert的效果更好,但是wenet速度更快,可以在移动端上实时运行
And other steps are in data_utils/process.py, you just run it like this.
其他步骤都写在data_utils/process.py里面了,没什么特别要注意的。
cd data_utils
python process.py YOUR_VIDEO_PATH --asr hubertThen you wait.
然后等它运行完就行了
After the preprocessing step, you can start training the model.
上面步骤结束后,就可以开始训练模型了。
cd ..
python train.py --dataset_dir ./data_dir/ --save_dir ./checkpoint/ --asr hubertBefore run inference, you need to extract test audio feature(i will merge this step and inference step), run this
在推理之前,需要先提取测试音频的特征(之后会把这步和推理合并到一起去),运行(音频采样率需要是16000)
python data_utils/hubert.py --wav your_test_audio.wav # when using hubert
or
python data_utils/python wenet_infer.py your_test_audio.wav # when using wenetthen you get your_test_audio_hu.npy or your_test_audio_wenet.npy
then run
python inference.py --asr hubert --dataset ./your_data_dir/ --audio_feat your_test_audio_hu.npy --save_path xxx.mp4 --checkpoint your_trained_ckpt.pthTo merge the audio and the video, run
ffmpeg -i xxx.mp4 -i your_audio.wav -c:v libx264 -c:a aac result_test.mp4这个模型是支持流式推理的,但是代码还没有完善,之后我会提上来。
关于在移动端上运行也是没问题的,只需要把现在这个模型通道数改小一点,音频特征用wenet就没问题了。相关代码我也会在之后放上来。
if you have some advice, open an issue or PR.
如果你有改进的建议,可以提个issue或者PR。
If you think this repo is useful to you, please give me a star.
如果你觉的这个repo对你有用的话,记得给我点个star