Chore: Add Videos and clean up extension list

This commit is contained in:
Alexander Hosking 2023-08-15 23:27:05 -04:00
parent c5ab01ef4d
commit e1b32be718

View File

@ -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)