From 07ee1c4cf3b242ef6f7945caaff94e5e35e86475 Mon Sep 17 00:00:00 2001 From: LightArrowsEXE Date: Wed, 17 Jun 2020 03:13:17 +0200 Subject: [PATCH] auto-crc.py: v1.1 * Remove m2ts support --- auto-CRC.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto-CRC.py b/auto-CRC.py index 133b187..eec9ded 100644 --- a/auto-CRC.py +++ b/auto-CRC.py @@ -14,7 +14,7 @@ import re __author__ = "LightArrowsEXE" __license__ = 'MIT' -__version__ = '1.0' +__version__ = '1.1' def calculateCRC(f): @@ -43,7 +43,7 @@ def main(recursive=False): for f in filelist: mime = mimetypes.types_map.get(os.path.splitext(f)[-1], "") - if mime.startswith("video/") or f.endswith('.m2ts') or f.endswith('.mkv'): + if mime.startswith("video/") or f.endswith('.mkv'): if args.strip: strip_crc(f) else: