dotfiles/scripts/vrc-compressor.py

39 lines
807 B
Python
Raw Normal View History

2022-05-08 22:09:16 +02:00
#!/bin/env python3
import time
import datetime
import os
from subprocess import call
ROOT_DIR = "/home/crispypin/pictures/VRChat/"
MAX_SIZE = 8 * 1024 * 1024
PROCESSED = []
def delay(seconds=30):
# delay that can be keyboard interrupted
for _ in range(10*seconds):
time.sleep(0.1)
def scan():
date = datetime.datetime.now()
month = f"{date.year}-{date.month:02d}/"
path = ROOT_DIR + month
print(f"checking {path}")
items = os.listdir(path)
# print(items)
for f in items:
if os.path.isfile(path + f):
if os.path.getsize(path + f) > MAX_SIZE and f not in PROCESSED:
# input(f)
call(f"convert {f} temp.{f}", cwd=path, shell=True)
call(f"mv temp.{f} {f}", cwd=path, shell=True)
2022-05-28 14:13:11 +02:00
print(f"compressed {f}")
2022-05-08 22:09:16 +02:00
PROCESSED.append(f)
2022-05-28 14:13:11 +02:00
print("done")
2022-05-08 22:09:16 +02:00
while True:
scan()
delay(60)