Spaces:
Sleeping
Sleeping
roychao19477
commited on
Commit
·
dc2a376
1
Parent(s):
d3fe22c
Add limitations
Browse files
app.py
CHANGED
@@ -196,7 +196,7 @@ def extract_faces(video_file):
|
|
196 |
fps=fps
|
197 |
)
|
198 |
from moviepy.video.fx.MirrorY import MirrorY
|
199 |
-
clip = MirrorY().
|
200 |
|
201 |
# Save audio from original, resampled to 16kHz
|
202 |
audio_path = os.path.join(tmpdir, "audio_16k.wav")
|
|
|
196 |
fps=fps
|
197 |
)
|
198 |
from moviepy.video.fx.MirrorY import MirrorY
|
199 |
+
clip = clip.fx(MirrorY().copy())
|
200 |
|
201 |
# Save audio from original, resampled to 16kHz
|
202 |
audio_path = os.path.join(tmpdir, "audio_16k.wav")
|