VidPy¶
A Python video editor and compositor based on the MLT Multimedia Framework.
Note: VidPy is currently in alpha - there are probably a bunch of bugs, and the api will likely change. If you’re interested in testing it out, please do, and leave comments/suggestions/issues in the issue tracker.
from vidpy import Clip, Composition
clips = []
for i in range(0, 8):
clip = Clip('hand.mp4', start=i*5)
clip.repeat(5)
clip.chroma(amount=.20)
clip.position(x=i*160-500)
clips.append(clip)
comp = Composition(clips, bgcolor='#ff5179', duration=8)
comp.save('hands.mp4')
Credits¶
VidPy is by Sam Lavigne, and draws heavily from MoviePy by Zulko.