使用moviepy更快地连接影片剪辑的方法?

时间:2018-05-27 08:32:27

标签: python python-3.x ffmpeg moviepy

通过使用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])

或删除模块的打印功能以加快进程?

0 个答案:

没有答案