Created
January 5, 2015 11:52
-
-
Save codemartial/3a0d54cc3b33be31f05d to your computer and use it in GitHub Desktop.
Using exiftool to extract <file>,Model,ImageSize,35mmFL CSV Records for specific Lens IDs (assumed present in 'lensids' file)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find $SEARCH_PATHS -type f -print0 | xargs -0 exiftool -csv -F -LensIDNumber 2>/dev/null | grep -f lensids | cut -d ',' -f 1 > zoompix | |
cat zoompix | tr '\n' '\0' | xargs -0 exiftool -csv -Model -ImageSize -FocalLengthIn35mmFormat > info-zoompix | |
cat info-zoompix | ./analyse-fl.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment