|
LeicaPlace |
|
|
2Thanks
-
1
Post By pholcid
-
1
Post By inkista
 |
|

June 21st, 2012, 12:07 PM
|
|
|
EXIF database software
Saw a discussion of software that categorized photos by EXIF data categories, such as the effective focal length you shoot at. Does anyone recall the name of the software? This software would help you identify your shooting trends.
|

June 21st, 2012, 12:57 PM
|
 |
Mu-43 Hall of Famer
|
|
Join Date: May 2012
Location: Hunterdon County, NJ
Posts: 2,053
Real Name: Jay jloden's Gallery
|
|
Not sure if this is the thread you were referring to: Crunching the Numbers on Focal Lengths but I started that one recently for discussing the same topic. If you're on Windows, there's ExposurePlot, and if you use LightRoom you can also do a lot of stuff with the metadata available there.
I couldn't find a standalone app for OS X and I didn't have LightRoom yet (most of my photos are in iPhoto still), so I just ended up writing a very basic script I can run from a terminal session that tells me the distribution of focal lengths in my shots by analyzing metadada with an EXIF library.
__________________
500px | flickr
“The camera is an instrument that teaches people how to see without a camera.” -- Dorothea Lange
|

June 24th, 2012, 01:05 AM
|
|
|
Quote:
Originally Posted by Wasabi Bob
Saw a discussion of software that categorized photos by EXIF data categories, such as the effective focal length you shoot at. Does anyone recall the name of the software? This software would help you identify your shooting trends.
|
Phil Harvey's free exiftool is the gold standard, but it's command line only. Cross platform for mac/linux/windows. Installation is easy on mac/linux, probably on windows. Using it may or may not be easy, depending on exactly what you want to do. There are a few guis around but they only cover tiny subsets of its full power.
ExifTool by Phil Harvey
Many common options are pretty easy to learn, and there's a user forum that's friendly to non-techie beginners.
an example from the documentation that should be close to what you want to do--just import the output file to a spreadsheet:
exiftool -T -createdate -aperture -shutterspeed -iso dir > out.txt
List specified meta information in tab-delimited column form for all images in dir to an output text file named ``out.txt''.
exiftool will show you tons more metadata than most photo editors will. It also provides some nice custom calculations, such as the DoF, if the camera supplies enough data such as focus distance.
If you're on a Mac, it's easy to use Automator to set up droplets and services to apply common scenarios to selected files. There are several tutorials floating around.
|

June 25th, 2012, 09:17 PM
|
|
|
Thanks
Exposure Plot was the program, but I was hoping that it would ID the lens that was used. I've got about 700 photos that were shot with different lens. Trying to figure out which lens is getting the most / least use.
I appreciate the responses!
|

June 25th, 2012, 10:01 PM
|
 |
Mu-43 Hall of Famer
|
|
Join Date: May 2012
Location: Hunterdon County, NJ
Posts: 2,053
Real Name: Jay jloden's Gallery
|
|
Quote:
Originally Posted by Wasabi Bob
Exposure Plot was the program, but I was hoping that it would ID the lens that was used. I've got about 700 photos that were shot with different lens. Trying to figure out which lens is getting the most / least use.
I appreciate the responses!
|
Yeah, LightRoom will do that if you have it, you can go to the Library mode and look at the Metadata section and see how many photos are categorized under each lens. You can get a free trial of LightRoom for 30 days, so you could always install it to play around with for a month and find out the info you need too
__________________
500px | flickr
“The camera is an instrument that teaches people how to see without a camera.” -- Dorothea Lange
|

June 25th, 2012, 10:53 PM
|
|
|
Quote:
Originally Posted by Wasabi Bob
Exposure Plot was the program, but I was hoping that it would ID the lens that was used. I've got about 700 photos that were shot with different lens. Trying to figure out which lens is getting the most / least use.
|
Assuming that your camera bothers to write the data to the file (or can--if you use an adapter, the camera doesn't know) exiftool can do it easily:
exiftool -T -LensInfo -r topdir > out.txt
(-r has it go through an entire directory tree)
OM-D reports the 12-50 as 12-50mm f/3.5-6.3
There's a lot of useful metadata such as focus distance that Aperture doesn't bother to tell me about, maybe Lightroom is better. For amusement, I dumped all available data from an OM-D raw file:
http://pholcid.fastmail.us/omd-raw-metadata.txt
[Composite] values are calculated by exiftool, they aren't actually in the file.
A lot of the stuff is instructions for processing the raw data, but I wonder if these two are indications of a future feature:
ManometerPressure : 0 kPa
ManometerReading : 0 m, 0 ft
|

June 26th, 2012, 04:29 PM
|
|
|
Great tips
Very much appreciated!
|

June 26th, 2012, 05:00 PM
|
 |
Mu-43 Regular
|
|
|
|
Quote:
Originally Posted by jloden
... If you're on Windows, there's ExposurePlot, and if you use LightRoom you can also do a lot of stuff with the metadata available there.
I couldn't find a standalone app for OS X...
|
Try PhotoStats.
Quote:
Originally Posted by pholcid
Phil Harvey's free exiftool is the gold standard, but it's command line only. ...
|
If you're using Lightroom, there's a donationware plugin called LensTagger that's built on top of exiftool to writes lens and film information into a photo's EXIF. It's a bit of a pain to use, but a lot more convenient than command line. And it will store a list of your lenses for repeat use. Just be aware that fields don't auto populate or generate when you expect them to, and you have to hit buttons. Also that you need to wait for the exiftool run to finish and then reload the photo's metadata in LR (as I said, a bit of a pain).
__________________
MFT: G3, Panasonic 14-42, 45-200, & 20/1.7, Oly 45/1.8, Rokinon (Samyang) 7.5 fisheye; FL-50. Also lotsa Canon gear + MF lenses.
flickr stream and equipment list.
|

June 26th, 2012, 09:27 PM
|
 |
Mu-43 Hall of Famer
|
|
Join Date: May 2012
Location: Hunterdon County, NJ
Posts: 2,053
Real Name: Jay jloden's Gallery
|
|
Quote:
Originally Posted by inkista
Try PhotoStats.
If you're using Lightroom, there's a donationware plugin called LensTagger that's built on top of exiftool to writes lens and film information into a photo's EXIF. It's a bit of a pain to use, but a lot more convenient than command line. And it will store a list of your lenses for repeat use. Just be aware that fields don't auto populate or generate when you expect them to, and you have to hit buttons. Also that you need to wait for the exiftool run to finish and then reload the photo's metadata in LR (as I said, a bit of a pain).
|
I'll check out PhotoStats, thanks! It requires LightRoom and iPhoto libraries to work from, but fortunately those are the two apps I've used so that works out, haha.
LensTagger is also handy, I've been using it to tag photos taken with the Voigtlander 25mm and 17.5mm I rented, so I can at least sort my photos by lens & focal length. I'm not anal enough to write down aperture info for photos I take for tagging later though  Will come in really handy when I start using old manual lenses. The only warning/caveat which I found out the hard way is that if you use "read metadata from file" after retagging with LensTagger, it resets any editing you've done on the image.
__________________
500px | flickr
“The camera is an instrument that teaches people how to see without a camera.” -- Dorothea Lange
|
 |
| Thread Tools |
Search this Thread |
|
|
|
|
|
More Discussions |
|
Click the "101 Active Discussions" tab at the top of the page.
|
|
More Member Ads |
|
Click the "Buy and Sell" tab at the top of the page.
|
|
FTC Disclosure |
This site uses affiliate programs and referral links for monetization.
|
|