ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: AndrewWevers on January 03, 2024, 10:16:27 PM

Title: Quite a few Metadata questions
Post by: AndrewWevers on January 03, 2024, 10:16:27 PM

I know lightroom does this in their filter tab, but I do not use lightroom and would ideally not like to import a batch of 32k+ photos to that program after the fact just for starting data.

Thanks in advance, Sorry I am completely new at this.

Edit:
I just downloaded MetaImage as listed on the ExifTool Homepage, and this seems to extrapolate all the data I could need, I just need to sort it myself.

Looks like this solves the issue, feel free to delete this post. thanks again!
Title: Re: Quite a few Metadata questions
Post by: Phil Harvey on January 04, 2024, 08:06:20 AM
The thing to do is to output a CSV-format file to a spreadsheet and do whatever analysis/plotting you want there.

The ExifTool command could look something like this:

exiftool -csv -make -model -lensid -focallength -aperture -iso -r DIR > out.csv

The -r option recursively processes images in contained subdirectories.  You can limit this to processing only specified file types using the -ext option.

- Phil