Home > Mobile >  best way to get metadata from pictures in a folder
best way to get metadata from pictures in a folder

Time:02-15

I'm looking for the easiest way to get a maximum of metadata from all pictures of a single folder.

I actually want to make a soft (bash / vba / whatever) where I just have a simple action to do to export all metadata of each pics inside an excel worksheet.

What's about Exiftool ? is that the best technique ? Is anyone know a soft who do that ?

Thanks for the help, dear community.

CodePudding user response:

Use exiftool to create a csv file then open that with Excel.

exiftool -csv *.jpg > data.csv

  • Related