Sony A7R3 Shutter Count

Started by FrankG, June 18, 2018, 02:37:47 PM

Previous topic - Next topic

FrankG

Mac OS 10.13.5

Does Exif tool support the Sony A7R III ?

If so can you you assist me in getting the Image count / or shutter count

Thank you

Phil Harvey

Yes.  The command is:

exiftool -imagecount FILE

But there are actually 3 image count tags.  You can get them all with this:

exiftool "-imagecount*" FILE

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

FrankG

#2
Like this ?

Franks-iMac:~ frankgross$ exiftool -imagecount /Users/frankgross/Pictures/Camera_Downloads/2018/June/_DSC2345.ARW
Image Count                     : 4432
Franks-iMac:~ frankgross$

FrankG

or for the other one:

Last login: Mon Jun 18 15:36:20 on ttys000
Franks-iMac:~ frankgross$ exiftool '-imagecount*' /Users/frankgross/Pictures/Camera_Downloads/2018/June/_DSC2345.ARW
Image Count                     : 4432
Image Count 2                   :   4432
Image Count 3                   : 4432
Franks-iMac:~ frankgross$

Phil Harvey

...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).