File size: 228 Bytes
6755a2d
 
 
 
 
 
 
 
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"],
    )