bitwarden

This commit is contained in:
jaydee
2024-09-24 17:58:52 +02:00
parent c3769086bc
commit ee6a780bd6

View File

@@ -191,9 +191,12 @@ if _ACTION == "encode":
if os.path.exists(_FULL_PATH): if os.path.exists(_FULL_PATH):
if os.path.exists(_FULL_PATH + "100GOPRO"): if os.path.exists(_FULL_PATH + "100GOPRO"):
_FULL_PATH = _FULL_PATH + "100GOPRO" _FULL_PATH = _FULL_PATH + "100GOPRO"
parts = []
for filename in os.listdir(_FULL_PATH): for filename in os.listdir(_FULL_PATH):
if filename.startswith("joined_") and filename.endswith(".MP4"): if filename.startswith("joined_") and filename.endswith(".MP4"):
parts.append(filename) parts.append(filename)
else:
sys.exit()