Spaces:
Runtime error
Runtime error
File size: 198 Bytes
210ae8c |
1 2 3 4 5 6 7 8 9 10 11 |
import glob
import os
def clean_videos(path: str):
# Remove past videos
files = glob.glob(f"{path}/*")
for file in files:
if file.endswith(".mp4"):
os.remove(file)
|