通过使用Moviepy库,我找到了一种更好的制作剪辑的方法
clip_1 = ffmpeg_extract_subclip(filename,
t1, t2,
targetname="test1.mp4")
rather than using VideoFileClip function
clip1 = VideoFileClip("test1.mp4")
然而,我想我们是否可以使用除
之外的任何其他方法将两个或更多视频文件与这样的速度差合并final_clip = CompositeVideoClip([clip1,clip2])
或删除模块的打印功能以加快进程?