From e1b32be718dfb90d0a2c08291f8dbadc93c5cd9a Mon Sep 17 00:00:00 2001 From: Alexander Hosking Date: Tue, 15 Aug 2023 23:27:05 -0400 Subject: [PATCH] Chore: Add Videos and clean up extension list --- mediacopy/file_copy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediacopy/file_copy.py b/mediacopy/file_copy.py index 77b0944..2251c30 100644 --- a/mediacopy/file_copy.py +++ b/mediacopy/file_copy.py @@ -30,7 +30,7 @@ for item in file_list: filename, file_extension = os.path.splitext(item) filename = item # Critical to the process - if not file_extension.lower() == ".nef" and not file_extension.lower() == ".jpg": + if not file_extension.lower() in (".nef", ".jpg", ".mp4"): continue # print(filename, file_extension)