Answers for "how to find video length with 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 find video length with python"

Python Answers by Framework

Browse Popular Code Answers by Language