File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ To stop playing press Ctrl+C in either the terminal or mpv
95
95
<details ><summary >List all subcommands</summary >
96
96
97
97
$ library
98
- xk media library subcommands (v2.4.006 )
98
+ xk media library subcommands (v2.4.007 )
99
99
100
100
Create database subcommands:
101
101
╭───────────────┬────────────────────────────────────────────────────╮
Original file line number Diff line number Diff line change 1
- __version__ = "2.4.006 "
1
+ __version__ = "2.4.007 "
Original file line number Diff line number Diff line change @@ -235,8 +235,12 @@ def extract_image_metadata_chunk(metadata: List[dict]) -> List[dict]:
235
235
raise
236
236
237
237
chunk_paths = [d ["path" ] for d in metadata ]
238
- with exiftool .ExifToolHelper () as et :
239
- exif = et .get_metadata (chunk_paths )
238
+ try :
239
+ with exiftool .ExifToolHelper () as et :
240
+ exif = et .get_metadata (chunk_paths )
241
+ except exiftool .exceptions .ExifToolExecuteError :
242
+ log .exception ("exifTool failed executing get_metadata %s" , metadata )
243
+ return metadata
240
244
241
245
exif_enriched = []
242
246
for m , e in zip (metadata , exif ):
You can’t perform that action at this time.
0 commit comments