Find all photos where OffsetTime matches certain value

Started by newbie24, Today at 05:19:34 AM

Previous topic - Next topic

newbie24

Hi,

I would like to find a way to find all photos where OffsetTime does not equal +01:00. I tried with:
exiftool -filename -OffsetTime -if "$OffsetTime ne '+01:00'" -r -T .
exiftool -filename -OffsetTime -if "$OffsetTime ne +01:00" -r -T .
exiftool -filename -OffsetTime -if "$OffsetTime ne '1'" -r -T .
exiftool -filename -OffsetTime -if "$OffsetTime ne 1" -r -T .

But none of these find the photos with different OffsetTimes. What am I missing?

I apologize if the question has already been asked, but I did not find the answer on the forum.

greybeard

The first one should work on Windows - the following works on a Mac:

exiftool -filename -offsettime -if '$OffsetTime ne "+01:00"' -r -T .