[Digikam-users] how to find images without some tag, for example GPS location tags
Greg Kennedy
kennedy.greg at gmail.com
Wed Jan 6 14:17:36 GMT 2010
Save this Perl script in your base directory as "print_no_gps.pl":
#!/usr/bin/perl
if (`exiftool -GPS \"$ARGV[0]\"` eq '')
{
print "$ARGV[0]\n";
}
and then...
find <dirname> -iname "*.jpg" -exec print_no_gps.pl {} \;
You can change the -GPS to -MakerNotes or whatever later, to get your
second goal : )
-Greg
MichaĆ Smoczyk wrote:
> Hi,
> I was trying with digiKam to check which of my photographs have *NOT
> SET* GPS tags (coordinates, altitudes, etc.) embedded in EXIF
> metadata. Well, I couldn't find related options in digiKam search
> tab. I suppose this kind of search is impossible in digiKam. So,
> anyone knows a way to do this via exiftool, exiv2 or some other tool?
>
> I am trying to find metadata 'orphans' in my collection in this way.
> Next I'm going to find images without authorship tag set. Cheers,
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Digikam-users mailing list
> Digikam-users at kde.org
> https://mail.kde.org/mailman/listinfo/digikam-users
>
More information about the Digikam-users
mailing list