spookyuser
commited on
Commit
•
5f6f7a2
1
Parent(s):
299cfef
Fix path
Browse files- animate.py +2 -2
animate.py
CHANGED
@@ -198,8 +198,8 @@ def get_video_frames(
|
|
198 |
|
199 |
resize_img(test_1, test_2, vid_output_dir)
|
200 |
input_frames = [
|
201 |
-
Path(vid_output_dir / "test1.png"),
|
202 |
-
Path(vid_output_dir / "resized_img2.png"),
|
203 |
]
|
204 |
|
205 |
frames = list(
|
|
|
198 |
|
199 |
resize_img(test_1, test_2, vid_output_dir)
|
200 |
input_frames = [
|
201 |
+
Path(vid_output_dir / "test1.png").as_posix(),
|
202 |
+
Path(vid_output_dir / "resized_img2.png").as_posix(),
|
203 |
]
|
204 |
|
205 |
frames = list(
|