Overview¶
Working with Clips and Compositions¶
Use the Clip
class to create and manipulate video clips, and the
Composition
class to put clips together.
Composition()
takes a list of clips as input, and then allows you to
save an output video with save()
, or to preview with preview()
.
By default a composition will treat each clip as a separate track, playing them all at the same time.
from vidpy import Clip, Composition
clip1 = Clip('video.mp4')
clip2 = Clip('anothervideo.mp4')
# play videos on top of each other
composition = Composition([clip1, clip2])
composition.save('output.mp4')
You can tell clips when to start playing with the offset
parameter,
or with set_offset()
after instantiation. All time is in seconds.
# start playing clip one after 1.5 seconds
clip1 = Clip('video.mp4', offset=1.5)
clip2 = Clip('anothervideo.mp4')
clip2.set_offset(5) # start clip2 after 5 seconds
composition = Composition([clip1, clip2])
composition.save('output.mp4')
Trim clips with start
and end
parameters, or with the cut
method.
# only use the first second of the clip
clip1 = Clip('video.mp4', start=0, end=1)
clip2 = Clip('anothervideo.mp4')
clip2.cut(start=2, end=4) # use clip2 from 2 to 4 seconds
You can also play clips one after the other (instead of all at the same
time) by adding singletrack=True
as a parameter to your composition.
composition = Composition([clip1, clip2], singletrack=True)
composition.save('output.mp4')
Composition
also allows you to set dimensions, fps, and background
color.
# create a 1280x720 composition at 30 fps with a red background
composition = Composition(clips, bgcolor="#ff0000", width=1280, height=720, fps=30)
# preview it
composition.preview()
Finally, you can convert compositions to clips to reuse.
comp = Composition([clip1, clip2, clip3], singletrack=True)
clip = Clip(comp)
# do stuff with the entire composition
clip.cut(0, 1)
Filters & Effects¶
There are a number of effects built into VidPy:
clip.fadein(1) # fade the clip in over 1 second
clip.fadeout(0.5) # fade the clip over 0.5 seconds
clip.glow() # add a glow effect
clip.spin(2) # make the clip spin around. (Why would you do this? I don't know!)
clip.chroma() # attempt to automatically remove the background color
clip.volume(0) # mute a video
# set clip's position
clip.position(x=100, y=20)
# resize a clip
clip.position(w='50%', h='20%'')
# start the clip scaled to 200% at coordinates (0, 0)
# then move it to (200, 200) and scale it to 90% over 5 seconds
clip.zoompan([0, 0, '200%', '200%'], [200, 200, '90%', '90%'], start=0, end=5)
Please note that effects will be applied in the order that you add them, and that order matters. For example, the chroma filter will be affected by any color adjustment already on the clip.
For a full list see the filters documentation (link to come, in the meantime, look at the Clip class documentation).
You can also use any filter supported by
mlt with the
fx
method. The first parameter should be the name of the filter, and
the second a dictionary of options.
For example, to add a cartoon effect:
# use the full filter name as the first parameter
# and then a dictionary of options, based on the mlt documentation
clip.fx('frei0r.cartoon', {'0': 0.999})
Or, play with colors:
clip.fx('avfilter.colorchannelmixer', {'av.rr': 2, 'av.br': 2})
Remember to look at the mlt docs to figure out what parameters to pass in.
Text¶
Use the Text
class to render text
from vidpy import Text, Composition
text_clip = Text("A spectre is haunting Europe.", font="Comic Sans Ms", size=100, color="#ff0000")
composition = Composition([text]).preview()
You can use a Text clip the same way as a normal clip.
You can also directly overlay text on to another clip with the text
method.
from vidpy import Clip
clip = Clip('somevideo.mp4')
clip.text("Hello!", color="#ffffff")
Some optional parameters for text clips are:
font
any font name on your system
color
color of text
weight
between 100 and 1000
style
normal or italic
olcolor
outline color
outline
outline size
halign
horizontal alignment (left, center, right)
valign
vertical alignment (top, middle, bottom)
bbox
a bounding box to put the text in (x, y, width, height)