Exports an iPhoto library to a folder structure, optionally writing metadata to the copies, and optionally scaling down larger images.
This script has been tested with iPhoto 8.1.2 (from iLife '09); other versions may or may not work.
Originally written by Derrick Childers and posted to macosxhints. Modifications by Guillaume Boudreau, Brian Morearty, Mark Nottingham, and Rob Hooft.
-
Run this: python exportiphoto.py [options] Options include: -a, --albums use albums instead of events -m, --metadata write metadata to images -f, --faces store faces as keywords (requires -m) -r, --resize resize images rather than copying -x, --width set target horizontal size in pixels for resizing (requires -r) -y, --height set target vertical size in pixels for resizing (requires -r) -q, --quality set jpeg quality for resized images (requires -r)
-
There is no step 2
note that the -m flag is only available if extra libraries are installed; see below.
By default, exportiphoto exports Events. It can export Albums instead; use the -a option on the command line.
It creates a separate folder on disk for each event. Every folder is prefixed by the event date in this format: yyyy-mm-dd (because this format is sortable by name). If the event has a name it is appended to the end of the folder name.
Let's say you have the following events in iPhoto--two unnamed and one named:
Jun 10, 2009
Charlie's Birthday Party
Jun 20, 2009
Run:
python exportiphoto.py ~/Pictures/iPhoto\ Library/ ~/iPhoto\ Export
If Charlie's birthday party was on June 15th, the output folders will be:
2009-06-10
2009-06-15 Charlie's Birthday Party
2009-06-20
If you set useDate to False in the code, the folder names will be:
Jun 10, 2009
Charlie's Birthday Party
Jun 20, 2009
If pyexiv2 is installed, exportiphoto can write iPhoto metadata into images as they're exported, with the -m option. Currently, it writes:
- iPhoto image name to Iptc.Application2.Headline
- iPhoto description to Iptc.Application2.Caption
- iPhoto keywords to Iptc.Application2.Keywords
- iPhoto rating to Xmp.xmp.Rating
See below for information on installing pyexiv2.
NOTE: if you see messages like this:
Error: Directory Canon with 1100 entries considered invalid; not read.
you can safely ignore them; they indicate a problem reading the metadata already in the file. Installing a newer version of pyexiv2 should fix this (as of this writing, it's fixed in the repository, but not released).
Unfortunately, there is no easy way to install pyexiv2, but if you have MacPorts http://macports.org/, it's relatively simple; follow these steps to set up:
> sudo port install scons
> sudo port install exiv2
> sudo port install boost +python26
Then, after downloading Pyexiv2 http://tilloy.net/dev/pyexiv2/ and changing into its source directory:
> sudo CXXFLAGS=-I"/opt/local/include" LDFLAGS="-L/opt/local/lib -lpython2.6" scons install
> cd /opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/
> sudo mv libexiv2python.dylib libexiv2python.so
Note that you'll have to use python2.6 to run the script; e.g.,
> python2.6 exportiphoto ...
If PIL (the Python Imaging Library) is installed, exportiphoto can rescale images rather than just copying them. This can be useful to take a smaller set of images with you on a mobile device.
Using the resizing option requires specifying the "-r"/"--resize" option. Optionally horizontal and vertical target size of the image can be specified using "-x"/"--width" and "-y"/"--height", specified in pixels. Default values are x=1280 and y=1024. In determining how far to scale down, the program will attempt not to scale down images below this size in either direction. E.g. a 2:1 image will be scaled to 2048x1024, not to 1280x640. For JPEG images, the quality of the written image can be specified using the "-q"/"--quality" option. Default value is 85, usable values are between 0 and 100 but practical values between 70 and 95.
If you have macports, run this:
> sudo port install py26-pil
Note that you'll have to use python2.6 to run the script; e.g.,
> python2.6 exportiphoto ...