首頁  >  文章  >  後端開發  >  Python如何取得視訊檔案的大小和時長?

Python如何取得視訊檔案的大小和時長?

WBOY
WBOY轉載
2023-04-22 22:25:152621瀏覽

1. 前置知識

這裡一共需要用到3個Python函式庫,分別是os、pandas、moviepy。

  • ① os:用於取得某個目錄下的檔案和檔案大小;

  • ② pandas:用於將擷取到的信息,儲存到Excel中;

  • ③ moviepy:用於取得影片檔案中的時間長度;

##注意: pandas和moviepy屬於第三方函式庫,因此需要我們事先使用以下指令進行安裝。

pip install pandas
pip install moviepy

2. 完整程式碼

① 匯入所有函式庫

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

結果如下:

Python如何取得視訊檔案的大小和時長?

③ 自訂時間轉換函數

def time_convert(seconds):
    M,H = 60,3600
    if seconds < M:
        return f&#39;00:00:0{seconds}&#39; if seconds < 10 else f&#39;00:00:{str(seconds)}&#39;
    elif seconds < H:
        _M = int(seconds//M)
        _S = int(seconds%M)
        return f&#39;00:{f"0{_M}" if _M < 10 else str(_M)}:{f"0{_S}" if _S < 10 else str(_S)}&#39;
    else:
        _H = int(seconds//H)
        _M = int(seconds%H//M)
        _S = int(seconds%H%M)
        return f&#39;{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)}&#39;

由於下面介紹的

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

結果如下:

Python如何取得視訊檔案的大小和時長?

⑤ 將得到的資料儲存到Excel中

df.to_excel("info.xlsx",index=False)

最終效果如圖所示:

Python如何取得視訊檔案的大小和時長?

以上是Python如何取得視訊檔案的大小和時長?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除