Open In App

MoviePy – Creating Image Clip

Last Updated : 18 Aug, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

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. Image clip is basically a clip or we can say as single image which is loaded by the user.

In order to do this we will use ImageClip method

Syntax : ImageClip(name)

Argument : It takes file name i.e string as argument

Return : It returns ImageClip object

Below is the implementation




# importing editor from movie py
from moviepy.editor import *
  
# file name
name = "frame1.png"
  
# creating a image clip
clip = ImageClip(name)
  
# showing  clip 
clip.ipython_display() 


Output :

Another example




# importing editor from movie py
from moviepy.editor import *
  
# file name
name = "frame2.png"
  
# creating a image clip
clip = ImageClip(name)
  
# showing  clip 
clip.ipython_display() 


Output :


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads