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.
26 lines
841 B
Markdown
26 lines
841 B
Markdown
|
|
|
|
|
|
### Windows Native
|
|
|
|
- Make sure you have `ffmpeg` in the `%PATH%` as suggested in [#54](https://github.com/Winfredy/SadTalker/issues/54), following [this](https://www.geeksforgeeks.org/how-to-install-ffmpeg-on-windows/) installation to install `ffmpeg`.
|
|
|
|
|
|
### Windows WSL
|
|
- Make sure the environment: `export LD_LIBRARY_PATH=/usr/lib/wsl/lib:$LD_LIBRARY_PATH`
|
|
|
|
|
|
### Docker installnation
|
|
|
|
A dockerfile are also provided by [@thegenerativegeneration](https://github.com/thegenerativegeneration) in [docker hub](https://hub.docker.com/repository/docker/wawa9000/sadtalker), which can be used directly as:
|
|
|
|
```bash
|
|
docker run --gpus "all" --rm -v $(pwd):/host_dir wawa9000/sadtalker \
|
|
--driven_audio /host_dir/deyu.wav \
|
|
--source_image /host_dir/image.jpg \
|
|
--expression_scale 1.0 \
|
|
--still \
|
|
--result_dir /host_dir
|
|
```
|
|
|