Answers for "How to check how long a video (mp4) is using python script?"

1

get video length python

from moviepy.editor import VideoFileClip
clip = VideoFileClip("my_video.mp4")
print( clip.duration )
Posted by: Guest on November-24-2020

Code answers related to "How to check how long a video (mp4) is using python script?"

Python Answers by Framework

Browse Popular Code Answers by Language