In this tutorial, we will use an example to show you how to merge several video files to one using python moviepy.
1.Import moviepy library
from moviepy.editor import *
2.Open video files using moviepy
clip1 = VideoFileClip("myvideo.mp4") clip2 = VideoFileClip("myvideo2.mp4").subclip(50,60) clip3 = VideoFileClip("myvideo3.mp4")
In this example, we will video clip between 50-60senconds to combile inĀ myvideo2.mp4.
3.Combine video files to one video
final_clip = concatenate_videoclips([clip1,clip2,clip3]) final_clip.write_videofile("concat.mp4")
We will useĀ concatenate_videoclips() to combine video files.