這裡一共需要用到3個Python函式庫,分別是os、pandas、moviepy。
① os:用於取得某個目錄下的檔案和檔案大小;
② pandas:用於將擷取到的信息,儲存到Excel中;
③ moviepy:用於取得影片檔案中的時間長度;
##注意: pandas和moviepy屬於第三方函式庫,因此需要我們事先使用以下指令進行安裝。
pip install pandas pip install moviepy2. 完整程式碼① 匯入所有函式庫
import os import pandas as pd from moviepy.editor import VideoFileClip
useful_dir = [] for i in os.listdir(): if i.endswith("wmv"): useful_dir.append(i) useful_dir
③ 自訂時間轉換函數
def time_convert(seconds): M,H = 60,3600 if seconds < M: return f'00:00:0{seconds}' if seconds < 10 else f'00:00:{str(seconds)}' elif seconds < H: _M = int(seconds//M) _S = int(seconds%M) return f'00:{f"0{_M}" if _M < 10 else str(_M)}:{f"0{_S}" if _S < 10 else str(_S)}' else: _H = int(seconds//H) _M = int(seconds%H//M) _S = int(seconds%H%M) return f'{f"0{_H}" if _H < 10 else str(_H)}:{f"0{_M}" if _M < 10 else str(_M)}:{f"0{_S}" if _S < 10 else str(_S)}'
VideoFileClip()方法,取得時長的單位是秒。因此,需將秒換成適當的"時分秒"格式。若時間超過一分鐘,換算成"分鐘:秒",若超過一小時,就換算成"小時:分鐘:秒"格式。
x = [] y = [] for i in useful_dir: dir_size = str(round(os.path.getsize(i)/1024/1024,1)) + "M" clip = VideoFileClip(i) dir_time = time_convert(clip.duration) x.append(dir_size) y.append(dir_time) df = pd.DataFrame({"文件大小":x,"文件时长":y}) df
df.to_excel("info.xlsx",index=False)
以上是Python如何取得視訊檔案的大小和時長?的詳細內容。更多資訊請關注PHP中文網其他相關文章!