1
0
mirror of synced 2024-06-02 04:18:03 +02:00

Speed up a bit the processing of get_meta for images with a "regular" name

This commit is contained in:
jvoisin 2018-06-08 23:30:12 +02:00
parent e86e8e3c23
commit aa42b905d5

View File

@ -32,7 +32,7 @@ class __ImageParser(abstract.AbstractParser):
of this.
"""
fun = lambda f: subprocess.check_output(['/usr/bin/exiftool', '-json', f])
if not re.match('^[a-z0-9]', self.filename):
if re.search('^[a-z0-9]', self.filename) is None:
out = self.__handle_problematic_filename(self.filename, fun)
else:
out = fun(self.filename)