要批量读取视频文件的时间长度,可以使用Python中的OpenCV库。以下是一个示例代码,可以读取指定文件夹中所有视频文件的时间长度:文章来源:https://www.toymoban.com/news/detail-692053.html
import os
import cv2
video_dir = 'path/to/video/directory'
for filename in os.listdir(video_dir):
if filename.endswith('.mp4') or filename.endswith('.avi'): # 可以根据需要更改视频格式
filepath = os.path.join(video_dir, filename)
cap = cv2.VideoCapture(filepath)
length = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
fps = int(cap.get(cv2.CAP_PROP_FPS))
duration = length / fps
print(f"{filename}: {duration} seconds")
cap.release()
这个代码循环遍历指定文件夹中的所有文件,对于每个视频文件,使用OpenCV的VideoCapture对象打开文件,并使用get方法获取视频的帧数和帧率。然后,通过将帧数除以帧率来计算视频的持续时间。最后,代码打印出每个视频文件的名称和持续时间。文章来源地址https://www.toymoban.com/news/detail-692053.html
到了这里,关于Python批量读取视频文件的时间长度的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!