In this article we will see how we can create a text 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. Text clip is basically a clip here we can say it as image containing text.
In order to do this we will use TextClip
method
Syntax : TextClip(text)
Argument : It takes string as necessary argument and color size other styling effect are optional argument
Return : It returns TextClip object
Below is the implementation
from moviepy.editor import *
text = "GeeksforGeeks"
clip = TextClip(text, font = "Arial-Bold" , fontsize = 70 , color = "green" )
clip.ipython_display()
|
Output :

Another example
from moviepy.editor import *
text = "Hello"
clip = TextClip(text, font = "Arial-Bold" , fontsize = 50 , color = "black" )
clip.ipython_display()
|
Output :

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
18 Aug, 2020
Like Article
Save Article