Answers for "how to check video length python"

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 video length python"

Python Answers by Framework

Browse Popular Code Answers by Language