一个文件夹里(包括子文件夹)总时间
作者:
年画儿 | 来源:发表于
2019-07-31 17:05 被阅读0次# coding=utf-8
import os
from moviepy.editor import VideoFileClip
mypath = "/Users/austin/Desktop/爬虫部分"
totaltime = 0
for root,dirs,files in os.walk(mypath):
for name in files:
if name.endswith(".mp4"): #判定成为视频
fileaddress = os.path.join(root, name)
clip = VideoFileClip(fileaddress)
totaltime += clip.duration
# print( name +':' +str(clip.duration/60)+'min' ) # seconds
# print(f)
totaltime = totaltime/60/60 #秒转换成小时
print("看完这些视频总共需要的时间为:%.2f小时"%totaltime)
本文标题:一个文件夹里(包括子文件夹)总时间
本文链接:https://www.haomeiwen.com/subject/bpbtdctx.html
网友评论