Spaces:
Sleeping
Sleeping
roychao19477
commited on
Commit
·
77503a3
1
Parent(s):
c4d3233
Add limitations
Browse files
app.py
CHANGED
@@ -195,8 +195,8 @@ def extract_faces(video_file):
|
|
195 |
[cv2.cvtColor(cv2.resize(f, (224, 224)), cv2.COLOR_BGR2RGB) for f in frames],
|
196 |
fps=fps
|
197 |
)
|
198 |
-
|
199 |
-
clip
|
200 |
|
201 |
# Save audio from original, resampled to 16kHz
|
202 |
audio_path = os.path.join(tmpdir, "audio_16k.wav")
|
|
|
195 |
[cv2.cvtColor(cv2.resize(f, (224, 224)), cv2.COLOR_BGR2RGB) for f in frames],
|
196 |
fps=fps
|
197 |
)
|
198 |
+
from moviepy.video.fx.mirror_y import MirrorY
|
199 |
+
clip = MirrorY().apply(clip)
|
200 |
|
201 |
# Save audio from original, resampled to 16kHz
|
202 |
audio_path = os.path.join(tmpdir, "audio_16k.wav")
|