Hello Guys!
I am looking for a solution to combine clips using Python code in a zap. Input will be clips from Google Drive and output same to Google Drive.
I found following code but it’s not working! (I’m not coder). Could you please let me know if there is any solution or other ways to merge clips in zapier?
Code with i found:
from moviepy.editor import *
# load clips
clip_01 = VideoFileClip('nature.mp4')
clip_02 = VideoFileClip('rain.mp4')
# join + write
result_clip = concatenate_videoclips(cclip_01, clip_02])
result_clip.write_videofile('combined.mp4')