bitwarden

This commit is contained in:
jaydee
2024-09-23 18:23:06 +02:00
parent 03e8e565aa
commit bbb49e6d12

View File

@@ -96,6 +96,17 @@ if os.path.exists(_FULL_PATH):
print(output) print(output)
print("Moving...") print("Moving...")
for p in parts: for p in parts:
try:
shutil.move(p, _PROCESSED) shutil.move(p, _PROCESSED)
except:
print(f"Failed to move {p}")
try:
shutil.move(p.replace("MP4", "THM"), _PROCESSED) shutil.move(p.replace("MP4", "THM"), _PROCESSED)
except:
print(f"Failed to move {p.replace("MP4", "THM")}")
try:
shutil.move(p.replace("MP4", "LRV").replace("GH","GL"), _PROCESSED) shutil.move(p.replace("MP4", "LRV").replace("GH","GL"), _PROCESSED)
except:
print(f"Failed to move {p.replace("MP4", "LRV")}")