File size: 1,274 Bytes
556cf17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
### macOS

This method has been tested on a M1 Mac (13.3)

```bash

git clone https://github.com/OpenTalker/SadTalker.git

cd SadTalker 

conda create -n sadtalker python=3.8

conda activate sadtalker

# install pytorch 2.0

pip install torch torchvision torchaudio

conda install ffmpeg

pip install -r requirements.txt

pip install dlib # macOS needs to install the original dlib.

```

### 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/) tutorial to install `ffmpeg` or using scoop.


### Windows WSL


- Make sure the environment: `export LD_LIBRARY_PATH=/usr/lib/wsl/lib:$LD_LIBRARY_PATH`


### Docker Installation

A community Docker image by [@thegenerativegeneration](https://github.com/thegenerativegeneration) is available on the [Docker hub](https://hub.docker.com/repository/docker/wawa9000/sadtalker), which can be used directly:
```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

```