Saturday, September 6, 2025
HomeLanguagesMoviePy – Getting Height of Video File Clip

MoviePy – Getting Height of Video File Clip

In this article we will see how we can get the height of the video file in MoviePy. MoviePy is a Python module for video editing, which can be used for basic operations on videos and GIF’s. Height is the part of the dimensions of the video, height is basically the tall the length of video. We can load the video file clip with the help of command given below

clip = VideoFileClip(file_name)

In order to do this we will use h attribute with the VideoFileClip object Syntax : clip.h Argument : It takes no argument Return : It returns integer

Below is the implementation 

Python3




# Import everything needed to edit video clips
from moviepy.editor import *
 
# loading video dsa gfg intro video
clip = VideoFileClip("dsa_geek.webm")
 
# getting subclip from it
clip1 = clip.subclip(0, 10)
 
# getting height of the clip
height = clip1.h
 
# printing value of width
print("Height of clip  : " + str(height))
 
 
print("---------------------------------------")
 
 
# showing final clip
clip1.ipython_display(width = 480)


Output :

Height of clip  : 480
---------------------------------------
Moviepy - Building video __temp__.mp4.
Moviepy - Writing video __temp__.mp4

                                                                                                                       
Moviepy - Done !
Moviepy - video ready __temp__.mp4

Another example 

Python3




# Import everything needed to edit video clips
from moviepy.editor import *
 
# loading video gfg
clip = VideoFileClip("neveropen.mp4")
 
 
# getting subclip from it
clip1 = clip.subclip(0, 7)
 
# getting height of the clip
height = clip1.h
 
# printing value of width
print("Height of clip  : " + str(height))
 
 
 
print("---------------------------------------")
 
 
# showing final clip
clip1.ipython_display()


Output :

Width of clip  : 404
---------------------------------------
Moviepy - Building video __temp__.mp4.
MoviePy - Writing audio in __temp__TEMP_MPY_wvf_snd.mp3
                                                                                                                       
MoviePy - Done.
Moviepy - Writing video __temp__.mp4

                                                                                                                       
Moviepy - Done !
Moviepy - video ready __temp__.mp4
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6704 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS