In this article we will see how we can create a color clip in MoviePy. MoviePy is a Python module for video editing, which can be used for basic operations on videos and GIF’s. Video is formed by the frames, combination of frames creates a video each frame is an individual image. Color clip is basically a clip or we can say as single color image which is of color selected by the user.
In order to do this we will use ColorClip method
Syntax : ColorClip(size=(460, 380), color=[R, G, B])
Argument : It takes size and color as argument
Return : It returns ColorClip object
Below is the implementation
Python3
# importing editor from movie py from moviepy.editor import * # creating a color clip # setting it size to be 460 x 380 clip = ColorClip(size = ( 460 , 380 ), color = [ 100 , 255 , 100 ]) # showing clip clip.ipython_display() |
Output :
Another example
Python3
# importing editor from movie py from moviepy.editor import * # creating a color clip # setting it size to be 200 x 200 clip = ColorClip(size = ( 200 , 200 ), color = [ 255 , 255 , 100 ]) # showing clip clip.ipython_display() |
Output :