回答編集履歴
1
修正
test
CHANGED
@@ -38,7 +38,7 @@
|
|
38
38
|
|
39
39
|
for path in video_dir.glob("*.mp4"):
|
40
40
|
|
41
|
-
playtime = get_video_playtime(path)
|
41
|
+
playtime = get_video_playtime(path) # 再生時間を取得する
|
42
42
|
|
43
43
|
|
44
44
|
|
@@ -46,6 +46,6 @@
|
|
46
46
|
|
47
47
|
print(f"Delete {path} ({playtime}s <= {threshold}s)")
|
48
48
|
|
49
|
-
path.unlink()
|
49
|
+
path.unlink() # threshold 秒以下の動画を削除する
|
50
50
|
|
51
51
|
```
|