Spaces:
Runtime error
Runtime error
File size: 228 Bytes
a57c6eb |
1 2 3 4 5 6 7 8 9 |
def write_videoclip(clip, path, fps=None, n_thread=4):
getattr(clip, "write_videofile")(
path,
fps=fps,
codec="libx264",
threads=n_thread,
ffmpeg_params=["-pix_fmt", "yuv420p"],
)
|