https://github.com/davylandman/photo-stats
Want to know more about which photographic preferences you have? Get statistical!
https://github.com/davylandman/photo-stats
Last synced: 2 months ago
JSON representation
Want to know more about which photographic preferences you have? Get statistical!
- Host: GitHub
- URL: https://github.com/davylandman/photo-stats
- Owner: DavyLandman
- Created: 2010-11-09T21:25:57.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-11-13T08:28:35.000Z (over 14 years ago)
- Last Synced: 2024-10-11T19:59:25.586Z (8 months ago)
- Language: Ruby
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Photo Stats
=================
I created this small script to extract all EXIF information about my pictures
and add it to a SQLite database so I can write some cool queries on it.This script uses exiftool to extract the EXIF information from a wide range of
formats. The following information is extracted:- Lens
- FocalLength
- Aperture
- ShutterSpeed
- HyperFocalDistanceHow to run
---------
- make sure ruby >= 1.9.1 (due to sqlite3 dependency)
- `gem install sqlite3`
- `gem install mini_exiftool`
- make sure [exiftool](http://www.sno.phy.queensu.ca/~phil/exiftool/) is
installed
- ruby getstats.rb "/home/davy/Pictures" stats.sqldbTODO
---------
- Write some code to execute the queries and generate HTML file(s) which use
Google Chart API for some awesome graphs
- Better interaction in the console app.
- Find a faster way to read the exif information. (currently, 7000 6MB NEF
files took 30 minutes to read)