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