numz commited on
Commit
53f0e80
1 Parent(s): 8335fcc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -37
README.md CHANGED
@@ -123,68 +123,41 @@ It improves the quality of the lip-sync videos generated by the [Wav2Lip tool](h
123
 
124
  1. Install python 3.9
125
 
126
- `
127
  brew update
128
  brew install python@3.9
129
  brew install git-lfs
130
  git-lfs install
131
- `
132
  3. Install environnement and requirements
133
 
134
- `
135
  cd /YourWav2lipStudioFolder
136
- `
137
-
138
- `
139
  /opt/homebrew/bin/python3.9 -m venv venv
140
- `
141
-
142
- `
143
  ./venv/bin/python3.9 -m pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2
144
- `
145
-
146
- `
147
  ./venv/bin/python3.9 -m pip install -r requirements.txt
148
- `
149
-
150
- `
151
  ./venv/bin/python3.9 -m pip install transformers==4.33.2
152
- `
153
-
154
- `
155
  ./venv/bin/python3.9 -m pip install numpy==1.24.4
156
- `
157
 
158
  if It doesn't works or too long on pip install -r requirements.txt
159
 
160
- `
161
  ./venv/bin/python3.9 -m pip install inaSpeechSegmenter
162
- `
163
-
164
- `
165
  ./venv/bin/python3.9 -m pip install gradio==4.14.0 imutils==0.5.4 numpy opencv-python==4.8.0.76 scipy==1.11.2 requests==2.28.1 pillow==9.3.0 librosa==0.10.0 opencv-contrib-python==4.8.0.76 huggingface_hub==0.20.2 tqdm==4.66.1 cutlet==0.3.0 numba==0.57.1 imageio_ffmpeg==0.4.9 insightface==0.7.3 unidic==1.1.0 onnx==1.14.1 onnxruntime==1.16.0 psutil==5.9.5 lpips==0.1.4 GitPython==3.1.36 facexlib==0.3.0 gfpgan==1.3.8 gdown==4.7.1 pyannote.audio==3.1.1 TTS==0.21.2 openai-whisper==20231117 resampy==0.4.0 scenedetect==0.6.2 uvicorn==0.23.2 starlette==0.35.1 fastapi==0.109.0 fugashii
166
- `
167
-
168
- `
169
  ./venv/bin/python3.9 -m pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2
170
- `
171
-
172
- `
173
  ./venv/bin/python3.9 -m pip install transformers==4.33.2
174
- `
175
-
176
- `
177
  ./venv/bin/python3.9 -m pip install numpy==1.24.4
178
- `
179
 
180
  3. Install models
181
- `
182
  git clone https://huggingface.co/numz/wav2lip_studio models
183
- `
184
  5. Launch UI
185
- `
186
  ./venv/bin/python3.9 wav2lip_studio.py
187
- `
188
 
189
  # All Users
190
 
 
123
 
124
  1. Install python 3.9
125
 
126
+ ```
127
  brew update
128
  brew install python@3.9
129
  brew install git-lfs
130
  git-lfs install
131
+ ```
132
  3. Install environnement and requirements
133
 
134
+ ```
135
  cd /YourWav2lipStudioFolder
 
 
 
136
  /opt/homebrew/bin/python3.9 -m venv venv
 
 
 
137
  ./venv/bin/python3.9 -m pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2
 
 
 
138
  ./venv/bin/python3.9 -m pip install -r requirements.txt
 
 
 
139
  ./venv/bin/python3.9 -m pip install transformers==4.33.2
 
 
 
140
  ./venv/bin/python3.9 -m pip install numpy==1.24.4
141
+ ```
142
 
143
  if It doesn't works or too long on pip install -r requirements.txt
144
 
145
+ ```
146
  ./venv/bin/python3.9 -m pip install inaSpeechSegmenter
 
 
 
147
  ./venv/bin/python3.9 -m pip install gradio==4.14.0 imutils==0.5.4 numpy opencv-python==4.8.0.76 scipy==1.11.2 requests==2.28.1 pillow==9.3.0 librosa==0.10.0 opencv-contrib-python==4.8.0.76 huggingface_hub==0.20.2 tqdm==4.66.1 cutlet==0.3.0 numba==0.57.1 imageio_ffmpeg==0.4.9 insightface==0.7.3 unidic==1.1.0 onnx==1.14.1 onnxruntime==1.16.0 psutil==5.9.5 lpips==0.1.4 GitPython==3.1.36 facexlib==0.3.0 gfpgan==1.3.8 gdown==4.7.1 pyannote.audio==3.1.1 TTS==0.21.2 openai-whisper==20231117 resampy==0.4.0 scenedetect==0.6.2 uvicorn==0.23.2 starlette==0.35.1 fastapi==0.109.0 fugashii
 
 
 
148
  ./venv/bin/python3.9 -m pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2
 
 
 
149
  ./venv/bin/python3.9 -m pip install transformers==4.33.2
 
 
 
150
  ./venv/bin/python3.9 -m pip install numpy==1.24.4
151
+ ```
152
 
153
  3. Install models
154
+ ```
155
  git clone https://huggingface.co/numz/wav2lip_studio models
156
+ ```
157
  5. Launch UI
158
+ ```
159
  ./venv/bin/python3.9 wav2lip_studio.py
160
+ ```
161
 
162
  # All Users
163