.. meta:: :description: Python video editor and compositor :title: VidPy :Author: Sam Lavigne :keywords: video, python 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 `_. .. raw:: html
.. code:: python 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') .. toctree:: :maxdepth: 4 installation overview documentation examples Credits ------- VidPy is by `Sam Lavigne `__, and draws heavily from `MoviePy by Zulko `__.