Spaces:
Paused
Paused
experiment code added
Browse files
Wav2Lip/video_generator.py
CHANGED
|
@@ -270,4 +270,5 @@ def create_video(voice_audio, face):
|
|
| 270 |
out.release()
|
| 271 |
|
| 272 |
command = 'ffmpeg -y -i {} -i {} -strict -2 -q:v 1 {}'.format(voice_audio, 'temp/result.avi', outfile)
|
| 273 |
-
subprocess.call(command, shell=platform.system() != 'Windows')
|
|
|
|
|
|
| 270 |
out.release()
|
| 271 |
|
| 272 |
command = 'ffmpeg -y -i {} -i {} -strict -2 -q:v 1 {}'.format(voice_audio, 'temp/result.avi', outfile)
|
| 273 |
+
# subprocess.call(command, shell=platform.system() != 'Windows')
|
| 274 |
+
subprocess.call(command, shell=False)
|