jhj0517
commited on
Commit
·
f95c29e
1
Parent(s):
7f743c5
Add scale factor to fix bug
Browse files
modules/utils/video_helper.py
CHANGED
@@ -198,6 +198,7 @@ def create_video_from_frames(
|
|
198 |
'-framerate', str(frame_rate),
|
199 |
'-i', os.path.join(frames_dir, f"%05d{frame_img_mime_type}"),
|
200 |
'-c:v', vid_codec,
|
|
|
201 |
]
|
202 |
|
203 |
if output_mime_type == ".gif":
|
|
|
198 |
'-framerate', str(frame_rate),
|
199 |
'-i', os.path.join(frames_dir, f"%05d{frame_img_mime_type}"),
|
200 |
'-c:v', vid_codec,
|
201 |
+
'-vf', 'scale=iw:-2' if pix_format else None,
|
202 |
]
|
203 |
|
204 |
if output_mime_type == ".gif":
|