Unlogged Missing Photos After Import From Aperture

Hi!
I have just made the switch from Aperture to Lightroom, and have use the 1.1 version of the Aperture import plugin.
In my Aperture Library I have, according to the Library -> Photos: 11105 Photos, however after importing to Lightroom, I have only 10967 photos. I have checked the import log, and there were 4 items which failed to import - 3 were .mpo files (panoramas from an xPeria) and 1 was a .gif file. This leaves a deficit of 133 photos that I can't account for.
Is there any way to compare the aperture library to the lightroom library to see what is missing?

*WARNING* Once agin, this is a VERY long post! And this contains not only SQL, but heaps of command line fun!
TLDR Summary: Aperture is storing duplicates on disk (and referencing them in the DB) but hiding them in the GUI. Exactly how it does this, I'm not sure yet. And how to clean it up, I'm not sure either. But if you would like to know how I proved it, read on!
An update on handling metadata exported from Aperture. Once you have a file, if you try to view it in the terminal, perhaps like this:
$ less ApertureMetadataExtendedExport.txt
"ApertureMetadataExtendedExport.txt" may be a binary file.  See it anyway?
you will get that error. Turns out I was wrong, it's not (only?) due to the size of the file / line length; it's actually the file type Aperture creates:
$ file ApertureMetadataExtendedExport.txt
ApertureMetadataExtendedExport.txt: Little-endian UTF-16 Unicode text, with very long lines
The key bit being "Little-endian UTF-16", that is what is causing the shell to think it's binary. The little endian is not surprising, after all it's an X86_64 platform. The UTF-16 though is not able to be handled by the shell. So it has to be converted. There are command line utils, but Text Wrangler does the job nicely.
After conversion (to Unicode UTF-8):
$ file ApertureMetadataExtendedExport.txt
ApertureMetadataExtendedExport.txt: ASCII text, with very long lines
and
$ less ApertureMetadataExtendedExport.txt
Version Name    Title   Urgency Categories      Suppl. Categories       Keywords        Instructions    Date Created    Contact Creator Contact Job Title       City    State/Province  Country Job Identifier  Headline        Provider        Source  Copyright Notice        Caption Caption Writer  Rating  IPTC Subject Code       Usage Terms     Intellectual Genre      IPTC Scene      Location        ISO Country Code        Contact Address Contact City    Contact State/Providence        Contact Postal Code     Contact Country Contact Phone   Contact Email   Contact Website Label   Latitude        Longitude       Altitude        AltitudeRef
So, there you have it! That's what you have access to when exporting the metadata. Helpful? Well, at first glance I didn't think so - as the "Version Name" field is just "IMG_2104", no extension, no path etc. So if we have multiple images called "IMG_2104" we can't tell them apart (unless you have a few other fields to look at - and even then just comparing to the File System entries wouldn't be possible). But! In my last post, I mentioned that the Aperture SQLite DB (Library.apdb, the RKMasters table in particular) contained 11130 entries, and if you looked at the Schema, you would have noticed that there was a column called "originalVersionName" which should match! So, in theory, I can now create a small script to compare metadata with database and find my missing 25 files!
First of all, I need to add that, when exporting metadata in Aperture, you need to select all the photos! ... and it will take some time! In my case TextWrangler managed to handle the 11108 line file without any problems. And even better, after converting, I was able to view the file with less. This is a BIG step on my last attempt.
At this point it is worth pointing out that the file is tab-delimited (csv would be easier, of course) but we should be able to work with it anyway.
To extract the version name (first column) we can use awk:
$ cat ApertureMetadataExtendedExport.txt | awk -F'\t' '{print $1}' > ApertureMetadataVersionNames.txt
and we can compare the line counts of both input and output to ensure we got everything:
$ wc -l ApertureMetadataExtendedExport.txt
   11106 ApertureMetadataExtendedExport.txt
$ wc -l ApertureMetadataVersionNames.txt
   11106 ApertureMetadataVersionNames.txt
So far, so good! You might have noticed that the line count is 11106, not 11105, the input file has the header as I printed earlier. So we need to remove the first line. I just use vi for that.
Lastly, the file needs to be sorted, so we can ensure we are looking in the same order when comparing the metadata version names with the DB version names.
$ cat ApertureMetadataVersionNames.txt | sort > ApertureMetadataVersionNamesSorted.txt
To get the Version Names from the DB, fire up sqlite3:
$ sqlite3 Library.apdb
sqlite> .output ApertureDBMasterVersionNames.txt
sqlite> select originalVersionName from RKMaster;
sqlite> .exit
Checking the line count in the DB Output:
$ wc -l ApertureDBMasterVersionNames.txt
   11130 ApertureDBMasterVersionNames.txt
Brilliant! 11130 lines as expected. Then sort as we did before:
$ cat ApertureDBMasterVersionNames.txt | sort > ApertureDBMasterVersionNamesSorted.txt
So, now, in theory, running a diff on both files, should reveal the 25 missing files.... I must admit, I'm rather excited at this point!
$ diff ApertureDBMasterVersionNamesSorted.txt ApertureMetadataVersionNamesSorted.txt
IT WORKED! The output is a list of changes you need to make to the second input file to make it look the same as the first. Essentially, this will (in my case) show the Version Names that are missing in Aperture that are present on the File System.
So, a line like this:
1280,1281d1279
< IMG_0144
< IMG_0144
basically just means, that there are IMG_0144 appears twice more in the DB than in the Metadata. Note: this is specific for the way I ordered the input files to diff; although you will get the same basic output if you reversed the input files to diff, the interpretation is obviously reversed) as shown here: (note in the first output, we have 'd' for deleted, and in the second output it's 'a' for added)
1279a1280,1281
> IMG_0144
> IMG_0144
In anycase, looking through my output and counting, I indeed have 25 images to investigate. The problem here is we just have a version name, fortunately in my output, most are unique with just a couple of duplicates. This leads me to believe that my "missing" files are actually Aperture handling duplicates (though why it's hiding them I'm not sure). I could, in my DB dump look at the path etc as well and that might help, but as it's just 25 cases, I will instead get a FS dump, and grep for the version name. This will give me all the files on the FS that match. I can then look at each and see what's happening.
Dumping a list of master files from the FS: (execute from within the Masters directory of your Aperture library)
$ find . -type f > ApertureFSMasters.txt
This will be a list including path (relative to Master) which is exactly what we want. Then grep for each version name. For example:
$ grep IMG_0144 ApertureFSMasters.txt
./2014/04/11/20140411-222634/IMG_0144.JPG
./2014/04/23/20140423-070845/IMG_0144 (1).jpg
./2014/04/23/20140423-070845/IMG_0144.jpg
./2014/06/28/20140628-215220/IMG_0144.JPG
Here is a solid bit of information! On the FS i have 4 files called IMG_0144, yet if I look in the GUI (or metadata dump) I only have 2.
$ grep IMG_0144 ApertureMetadataVersionNamesSorted.txt
IMG_0144
IMG_0144
So, there is two files already!
The path preceding the image in the FS dump, is the date of import. So I can see that two were imported at the same time, and two separately. The two that show up in the GUI have import sessions of 2014-06-28 @ 09:52:20 PM and 2014-04-11 @ 10:26:34 PM. That means that the first and last are the two files that show in the GUI, the middle two do not.... Why are they not in the GUI (yet are in the DB) and why do they have the exact same import date/time? I have no answer to that yet!
I used open <filename> from the terminal prompt to view each file, and 3 out of my 4 are identical, and the fourth different.
So, lastly, with a little command line fu, we can make a useful script to tell us what we want to know:
#! /bin/bash
grep $1 ApertureFSMasters.txt | sed 's|\.|Masters|' | awk '{print "<full path to Aperture Library folder>"$0}' | \
while read line; do
  openssl sha1 "$line"
done
replace the <full path to Aperture Library folder> with the full path to you Aperture Library Folder, perhaps /volumes/some_disk_name/some_username/Pictures/.... etc. Then chmod 755 the script, and execute ./<scriptname> <version name> so something like
$ ./calculateSHA.sh IMG_0144
What we're doing here is taking in the version name we want to find (for example IMG_0144), and we are looking for it in the FS dump list. Remember that file contains image files relative to the Aperture Library Master path, which look something like "./YYYY/MM/DD/YYYYMMDD-HHMMSS/<FILENAME>" - we use sed to replace the "./" part with "Masters". Then we pipe it to awk, and insert the full path to aperture before the file name, the end result is a line which contains the absolute path to an image. There are several other ways to solve this, such as generating the FS dump from the root dir. You could also combine the awk into the sed (or the sed into the awk).. but this works. Each line is then passed, one at a time, to the openssl program to calculate the sha-1 checksum for that image. If a SHA-1 matches, then those files are identical (yes, there is a small chance of a collision in SHA-1, but it's unlikely!).
So, at the end of all this, you can see exactly whats going on. And in my case, Aperture is storing duplicates on disk, and not showing them in the GUI. To be honest, I don't actually know how to clean this up now! So if anyone has any ideas. Please let me know I can't just delete the files on disk, as they are referenced in the DB. I guess it doesn't make too much difference, but my personality requires me to clean this up (at the very least to provide closure on this thread).
The final point to make here is that, since Lightroom also has 11126 images (11130 less 4 non-compatible files). Then it has taken all the duplicates in the import.
Well, that was a fun journey, and I learned a lot about Aperture in the process. And yes, I know this is a Lightroom forum and maybe this info would be better on the Aperture forum, I will probably update it there too. But there is some tie back to the Lightroom importer to let people know whats happening internally. (I guess I should update my earlier post, where I assumed the Lightroom Aperture import plugin was using the FS only, it *could* be using the DB as well (and probably is, so it can get more metadata))
UPDATE: I jumped the gun a bit here, and based my conclusion on limited data. I have finished calculating the SHA-1 for all my missing versions. As well as comparing the counts in the GUI, to the counts in the FS. For the most part, where the GUI count is lower than the FS count, there is a clear duplicate (two files with the same SHA-1). However I have a few cases, where the FS count is higher, and all the images on disk have different SHA-1's! Picking one at random from my list; I have 3 images in the GUI called IMG_0843. On disk I have 4 files all with different SHA-1's. Viewing the actual images, 2 look the same, and the other 2 are different. So that matches 3 "unique" images.
Using Preview to inspect the exif data for the images which look the same:
image 1:
Pixel X Dimension: 1 536
Pixel Y Dimension: 2 048
image 2:
Pixel X Dimension: 3 264
Pixel Y Dimension: 2 448
(image 2 also has an extra Regions dictionary in the exit)
So! These two images are not identical (we knew that from the SHA-1), but they are similar (content is the same - resolution is the same) yet Aperture is treating these as duplicates it seems.. that's not good! does this mean that if I resize an image for the web, and keep both, that Aperture won't show me both? (at least it keeps both on disk though, I guess...)
The resolution of image 1, is suspiciously like the resolutions that were uploaded to (the original version of) iCloud Photos on the iPhone (one of the reasons I never used it). And indeed, the photo I chose at random here, is one that I have in an iCloud stored album (I have created a screensaver synced to iCloud, to use on my various Mac's and AppleTVs). Examining the data for the cloud version of the image, shows the resolution to be 1536x2048. The screensaver contains 22 images - I theorised earlier that these might be the missing images, perhaps I was right after all? Yet another avenue to explore.
Ok. I dumped the screensaver metadata, converted it to UTF-8, grabbed the version names, and sorted them (just like before). Then compared them to the output of the diff command. Yep! the 22 screensaver images match to 22 / 25 missing images. The other 3, appear to be exact duplicates (same SHA-1) of images already in the library. That almost solves it! So then, can I conclude that Lightroom has imported my iCloud Screensaver as normal photos of lower res? In which case, it would likely do it for any shared photo source in Aperture, and perhaps it would be wise to turn that feature off before importing to Lightroom?

Similar Messages

  • Missing photos after importing from iPhoto

    I have a big iPhoto library that span from 2002 until today.
    Launching Photo for the first time started the import of the default iPhoto library, when finished the problem is not everything has been imported.
    I have not done photo by photo check, but for instance all 2014 photos are missing and since I see less photo in previous years and in 2015 also photos from other years are missing.
    I can't reimport the iPhoto library (I have not been able to find how), so my question is how can I import the whole iPhoto library to Photos?

    First off that is a bad practice - never have any computer program delete things - import photos and keep them - after at least one successful backup cycle has taken place and you are sure your photos are safely on the Mac and backed up then use the camera's format command to erase and reformat the card
    You can try to backup your iPhoto library and hold down the option and command keys while launching iPhoto - repair permissions and rebuild the database form the resulting first aid window - that may recover your photos - if it does not then photo recover software like media recover is the next step
    LN

  • Save me! Missing pics after import from CD? what the..?

    Hello Mac superstars,
    I'm on a macbook pro from late 2011, on lion so I think that I would then have iphoto 11?
    Here's my story:
    -  Imported some photos from disc & first event created. But after ejecting disc, couldn't view pictures in iphoto (thumbnail fine, shows up in event but can't open to view full picture).
    -  Re-inserted disc, uploaded same pics to desktop then imported same pics from desktop into iphoto, to a new event.
    -  Think I opened the wrong event (direct from CD) and created an album & began editing. But disc was still in there so must have been working from disc?
    -  All was working fine for a while there...couldn't view photos at all.
    -  Then, I thought I deleted the original event with the pics uploaded from CD but may have deleted the event with the import from desktop??
    -  Can't restore from iphoto trash, original files nowhere to be found on my mac.
    -  Can't find photos from when they were saved to desktop using remorecovery software
    All other photos fine, just this one group of photos missing .. Please provide troubleshooting tips!!
    Many thanks

    Thre's nothing odd here, it's exactly by design and as you have chosen.
    You imported from a CD in a Referenced Library. If you run a Referenced Library then you decide where the files are stored. You decided they are stored on the CD. Now there is no CD there are no files.
    When you import any files in any iPhoto set up, the app creates a thumbnail for fast viewing in the iPhoto Window. That thumbnail is stored in the Library package. That's why you can see it.
    So, these files were never on your HD - or if they were they were deleted - so unless you're willing to run expensive File Recovery software there is no way to get them back.
    If you wish to try something like File Salvage you may be lucky, if the files were on the HD at some point and if they haven't been overwritten since.

  • Missing photos when importing from a Fuji s602zoom digital camera

    I noticed that when I import the photos from my digital camera (as above), sometimes there are some missing. No error messages displayed and the import seems to finish OK.
    This makes life difficult as I cannot now trust iPhoto and have to check every import.
    Any suggestions would be helpful.

    Neville:
    On those occasions where the camera drops some photos are there any movies on the card?
    A workaround is to use Image Capture to upload either to a folder on the Desktop first or directly into iPhoto. It's not recommended that you have iPhoto erase the card after import as there have been too many cases, yours for one, that have incomplete uploads and complete erasures.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Message was edited by: Old Toad

  • Missing folders after import from computer.

    After importing a large folder containing about 20 subfolders, at least half of the sub folders are missing from the listing on the left side.  The files in these missing folders are in LR but grayed out so I can not make a new folder and move them into it.  What can I do to have all subfolders listed?

    You can't import photos that are greyed out. The reason they are greyed out is that they have been previously imported into Lightroom. So ...
    Go to the main Grid in the Library Module, click on All Photographs in the catalog panel, find one of these photos and then right-click on it and select Go to Folder in Library; this will tell you where to find the photo in your Lightroom Folder panel.

  • Can not edit photos - cannot see photos after import from camera

    Hello all - Im having a very frustrating time getting Iphoto to work.
    First is that I can not edit photos
    double clicking photo - does not launch edit mode
    select photo and click edit pencil - does not launch edit mode
    Sometimes, however, edit mode is launched and thumbnails of photos can be seen along the top but not in the edit window.
    Clicking any effects or adjustment buttons results in a program crash.
    Originally installed with two users on the system - both admin.
    Problem occurs with both admin users
    Uninstalled all the I apps and deleted one admin user. Now only one user on the system (admin)
    Reinstalled I Life 8 and updated with the 8.2 updater
    Import 6 photos form camera in to new library. Still no joy.
    Is there some permissions problem going on?
    I have tried to rebuild the library several times.
    Also - after importing photos from camera. No photos appears within the library window until I click on the screen. THEN a photo appears.
    Sincerely
    Daniel
    Software hardware information
    Iphoto 7.1.3 (364)
    I life update 8.2
    PowerPC G4 dual 800 - 1.25 GB SDRAM
    NVIDIA GeForce2 MX

    Hello
    Here is the crash log.
    Many Thanks
    Daniel
    Host Name: masters-power-mac-g4
    Date/Time: 2008-05-10 19:29:46.227 +0100
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [63]
    Version: 7.1.3 (7.1.3)
    Build Version: 10
    Project Name: iPhotoProject
    Source Version: 3640000
    PID: 612
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.iPhoto 0x003efa0c 0x1000 + 4123148
    1 com.apple.AppKit 0x937d65e8 -[NSView _drawRect:clip:] + 2128
    2 com.apple.AppKit 0x937d5ba8 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 404
    3 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    4 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    5 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    6 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    7 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    8 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    9 com.apple.AppKit 0x937d5170 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    10 com.apple.AppKit 0x937d4fb0 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 280
    11 com.apple.AppKit 0x937cede4 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    12 com.apple.AppKit 0x937c40d8 -[NSView displayIfNeeded] + 248
    13 com.apple.AppKit 0x937c3f48 -[NSWindow displayIfNeeded] + 180
    14 com.apple.iPhoto 0x00342540 0x1000 + 3413312
    15 com.apple.AppKit 0x937c3df4 _handleWindowNeedsDisplay + 200
    16 com.apple.CoreFoundation 0x907de55c __CFRunLoopDoObservers + 352
    17 com.apple.CoreFoundation 0x907de7fc __CFRunLoopRun + 420
    18 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    19 com.apple.HIToolbox 0x932abb20 RunCurrentEventLoopInMode + 264
    20 com.apple.HIToolbox 0x932ab12c ReceiveNextEventCommon + 244
    21 com.apple.HIToolbox 0x932ab020 BlockUntilNextEventMatchingListInMode + 96
    22 com.apple.AppKit 0x93790874 _DPSNextEvent + 384
    23 com.apple.AppKit 0x93790538 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    24 com.apple.AppKit 0x9378ca7c -[NSApplication run] + 472
    25 com.apple.AppKit 0x9387d598 NSApplicationMain + 452
    26 com.apple.iPhoto 0x000038a0 0x1000 + 10400
    27 com.apple.iPhoto 0x000035a4 0x1000 + 9636
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1c7bc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1b67c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f122c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.AppKit 0x937bebe8 -[NSViewHierarchyLock lockForReadingWithExceptionHandler:] + 260
    3 com.apple.AppKit 0x9382d66c -[NSUIHeartBeat _heartBeatThread:] + 792
    4 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x010454c8 -[ILMediaBrowserPathWatcher watcherThread:] + 628
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x01047690 -[ILMediaBrowserPathWatcher(SpotlightSupport) spotlightWatcherThread:] + 652
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf93f4 TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x9934fa84 ReadSchedulerThreadEntryPoint + 5316
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf93f4 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c03e9c AIOFileThread(void*) + 520
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.ColorSync 0x915a1060 pthreadSemaphoreWait(t_pthreadSemaphore*) + 56
    3 com.apple.ColorSync 0x915a02fc CMMConvTask(void*) + 40
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000003efa0c srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042244 xer: 0x0000000000000004 lr: 0x00000000003ef9e0 ctr: 0x0000000092bf3734
    r0: 0x00000000021b1238 r1: 0x00000000bfffd870 r2: 0x0000000000000000 r3: 0x00000000a2bf159c
    r4: 0x0000000090a908b4 r5: 0x000000000d1a69b0 r6: 0x00000000006aa0c0 r7: 0x00000000a07bb960
    r8: 0x0000000000000004 r9: 0x0000000000000000 r10: 0x0000000090a3f628 r11: 0x000000000000003c
    r12: 0x0000000092bf3734 r13: 0x0000000000000001 r14: 0x00000000bfffe6b0 r15: 0x00000000006d0000
    r16: 0x00000000006e0000 r17: 0x00000000bffff270 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000006d0000 r21: 0x00000000006d0000 r22: 0x00000000006e0000 r23: 0x0000000000000000
    r24: 0x00000000006d0000 r25: 0x0000000090a908b4 r26: 0x00000000006d279c r27: 0x00000000006dc168
    r28: 0x00000000006e0000 r29: 0x00000000006e0000 r30: 0x000000000d1b0b90 r31: 0x00000000021a4550
    Binary Images Description:
    0x1000 - 0x687fff com.apple.iPhoto 7.1.3 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x76b000 - 0x775fff com.apple.UpgradeChecker 1.0 /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x77d000 - 0x7cbfff com.apple.ImageIO.framework 2.0.1 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image IO.framework/Versions/A/ImageIO
    0x7e9000 - 0x7edfff libGIF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7f2000 - 0x7f4fff libRadiance.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x1008000 - 0x1070fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x10ad000 - 0x10cdfff libJPEG.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x10d4000 - 0x10effff libPng.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x1205000 - 0x12a6fff com.apple.DotMacKit 47 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0x1314000 - 0x136efff libJP2.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x1384000 - 0x13c5fff libTIFF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x13cf000 - 0x144bfff com.apple.imageKit 1.0 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image Kit.framework/Versions/A/ImageKit
    0x149b000 - 0x160dfff com.apple.QuartzComposer 2.0 (106) /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Quart zComposer.framework/Versions/A/QuartzComposer
    0x584b000 - 0x584dfff com.apple.framework.iPhoto.CubeTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/CubeTransition.IAPlugin/Contents/MacO S/CubeTransition
    0x5853000 - 0x5854fff com.apple.framework.iPhoto.DissolveTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/DissolveTransition.IAPlugin/Contents/ MacOS/DissolveTransition
    0x58c0000 - 0x58ddfff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x5b19000 - 0x5be9fff com.apple.RawCamera.bundle 2.0.1 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x675e000 - 0x6768fff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x6771000 - 0x6779fff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x6781000 - 0x6784fff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x678a000 - 0x6793fff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x679c000 - 0x67a5fff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x67ae000 - 0x67b3fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x67ba000 - 0x67c4fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x69f8000 - 0x6a6ffff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x6cc0000 - 0x6d61fff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x6ebd000 - 0x6ebffff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6f16000 - 0x6fbffff com.apple.iTunesAccess 7.6.2 /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x7190000 - 0x7192fff com.apple.framework.iPhoto.BlackAndWhiteEffect 7.0 /Applications/iPhoto.app/Contents/PlugIns/BlackAndWhiteEffect.IAPlugin/Contents /MacOS/BlackAndWhiteEffect
    0x78a2000 - 0x78a5fff com.apple.framework.iPhoto.DropletTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/DropletTransition.IAPlugin/Contents/M acOS/DropletTransition
    0x78e4000 - 0x78e5fff com.apple.framework.iPhoto.FadeThroughBlackTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/FadeThroughBlackTransition.IAPlugin/C ontents/MacOS/FadeThroughBlackTransition
    0x7906000 - 0x7907fff com.apple.framework.iPhoto.FlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/FlipTransition.IAPlugin/Contents/MacO S/FlipTransition
    0x7fec000 - 0x7feefff com.apple.framework.iPhoto.TwirlTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/TwirlTransition.IAPlugin/Contents/Mac OS/TwirlTransition
    0x8123000 - 0x813cfff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x8142000 - 0x815dfff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x81f8000 - 0x81fafff com.apple.framework.iPhoto.MosaicFlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/MosaicFlipTransition.IAPlugin/Content s/MacOS/MosaicFlipTransition
    0x8305000 - 0x8377fff com.apple.GeForce2MXGLDriver 1.4.18 (4.1.8) /System/Library/Extensions/GeForce2MXGLDriver.bundle/Contents/MacOS/GeForce2MXG LDriver
    0x83ac000 - 0x83adfff com.apple.framework.iPhoto.WipeTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/WipeTransition.IAPlugin/Contents/MacO S/WipeTransition
    0x83f4000 - 0x83f6fff com.apple.framework.iPhoto.MosaicFlipTransitionSmall 7.0 /Applications/iPhoto.app/Contents/PlugIns/MosaicFlipTransitionSmall.IAPlugin/Co ntents/MacOS/MosaicFlipTransitionSmall
    0x853a000 - 0x853dfff com.apple.framework.iPhoto.PageFlipTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/PageFlipTransition.IAPlugin/Contents/ MacOS/PageFlipTransition
    0x8553000 - 0x8554fff com.apple.framework.iPhoto.PushTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/PushTransition.IAPlugin/Contents/MacO S/PushTransition
    0x8569000 - 0x856afff com.apple.framework.iPhoto.RevealTransition 7.0 /Applications/iPhoto.app/Contents/PlugIns/RevealTransition.IAPlugin/Contents/Ma cOS/RevealTransition
    0x8586000 - 0x8588fff com.apple.framework.iPhoto.SepiaEffect 7.0 /Applications/iPhoto.app/Contents/PlugIns/SepiaEffect.IAPlugin/Contents/MacOS/S epiaEffect
    0x858d000 - 0x85ccfff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x8905000 - 0x897efff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xc989000 - 0xca98fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xcb05000 - 0xccb9fff net.telestream.wmv.advanced 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0xd405000 - 0xd63efff net.telestream.wmv.import 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x8e9c9000 - 0x8ea99fff com.apple.QuickTimeMPEG4.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x8ed6f000 - 0x8ed73fff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x8ee6e000 - 0x8ef2afff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x8f4f0000 - 0x8f4f5fff com.apple.CoreMediaAuthoringPrivate 1.3 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x8f760000 - 0x8f7a1fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x8f840000 - 0x8f86efff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.10 (368.33) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91d4f000 - 0x91e3dfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e5c000 - 0x91e5cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e5e000 - 0x91f43fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4b000 - 0x91f6afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd6000 - 0x92044fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9204f000 - 0x920e4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920fe000 - 0x92686fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926b9000 - 0x929e4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a14000 - 0x92b02fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b05000 - 0x92b8dfff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bce000 - 0x92df9fff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f26000 - 0x92f44fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f4f000 - 0x92fa9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc7000 - 0x92fc7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc9000 - 0x92fddfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff5000 - 0x93005fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93011000 - 0x93026fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93038000 - 0x930bffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d3000 - 0x930defff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930e8000 - 0x93115fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9312f000 - 0x9313efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314a000 - 0x931b0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e1000 - 0x93230fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9325e000 - 0x9327bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9328d000 - 0x9329afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932a3000 - 0x935b1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93701000 - 0x9370dfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93712000 - 0x93732fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93786000 - 0x93786fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93788000 - 0x93dbbfff com.apple.AppKit 6.4.10 (824.45) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94148000 - 0x941bafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f3000 - 0x942b8fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9430b000 - 0x9430bfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9430d000 - 0x944cdfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94517000 - 0x94554fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9455c000 - 0x945acfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945b5000 - 0x945cffff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945e0000 - 0x94601fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9463e000 - 0x94683fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947a4000 - 0x947b3fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947bb000 - 0x947c8fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9480e000 - 0x94827fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9482e000 - 0x94b58fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c3f000 - 0x94cb0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e25000 - 0x94f55fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fe8000 - 0x94ff7fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fff000 - 0x9502cfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95033000 - 0x95043fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95047000 - 0x95076fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95086000 - 0x950a3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95495000 - 0x95495fff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95497000 - 0x9551afff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95547000 - 0x9558dfff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x957c5000 - 0x95883fff com.apple.WebKit 4525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x958f1000 - 0x959d9fff com.apple.JavaScriptCore 4525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95a15000 - 0x960e7fff com.apple.WebCore 4525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x965a5000 - 0x9662ffff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x966a8000 - 0x966aafff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x966ad000 - 0x966dffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97673000 - 0x97692fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97d03000 - 0x97d28fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97da9000 - 0x97e6afff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97e95000 - 0x97e96fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x97e98000 - 0x97ea5fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98005000 - 0x98006fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98af9000 - 0x98af9fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98c28000 - 0x98c4afff com.apple.DiscRecordingUI 3.1.3 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x990ea000 - 0x990edfff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x99338000 - 0x9a148fff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9a553000 - 0x9a55efff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a569000 - 0x9a6c2fff com.apple.MessageFramework 2.1.2 (753) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Host Name: masters-power-mac-g4
    Date/Time: 2008-05-11 09:42:54.809 +0100
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [62]
    Version: 7.1.3 (7.1.3)
    Build Version: 10
    Project Name: iPhotoProject
    Source Version: 3640000
    PID: 215
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.iPhoto 0x003efa0c 0x1000 + 4123148
    1 com.apple.AppKit 0x937d65e8 -[NSView _drawRect:clip:] + 2128
    2 com.apple.AppKit 0x937d5ba8 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 404
    3 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    4 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    5 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    6 com.apple.AppKit 0x937d88f0 _recursiveDisplayInRect2 + 84
    7 com.apple.CoreFoundation 0x907ee1e4 CFArrayApplyFunction + 416
    8 com.apple.AppKit 0x937d5cbc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    9 com.apple.AppKit 0x937d5170 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    10 com.apple.AppKit 0x937d4fb0 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 280
    11 com.apple.AppKit 0x937cede4 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    12 com.apple.AppKit 0x937c40d8 -[NSView displayIfNeeded] + 248
    13 com.apple.AppKit 0x937c3f48 -[NSWindow displayIfNeeded] + 180
    14 com.apple.iPhoto 0x00342540 0x1000 + 3413312
    15 com.apple.AppKit 0x937c3df4 _handleWindowNeedsDisplay + 200
    16 com.apple.CoreFoundation 0x907de55c __CFRunLoopDoObservers + 352
    17 com.apple.CoreFoundation 0x907de7fc __CFRunLoopRun + 420
    18 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    19 com.apple.HIToolbox 0x932abb20 RunCurrentEventLoopInMode + 264
    20 com.apple.HIToolbox 0x932ab12c ReceiveNextEventCommon + 244
    21 com.apple.HIToolbox 0x932ab020 BlockUntilNextEventMatchingListInMode + 96
    22 com.apple.AppKit 0x93790874 _DPSNextEvent + 384
    23 com.apple.AppKit 0x93790538 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    24 com.apple.AppKit 0x9378ca7c -[NSApplication run] + 472
    25 com.apple.AppKit 0x9387d598 NSApplicationMain + 452
    26 com.apple.iPhoto 0x000038a0 0x1000 + 10400
    27 com.apple.iPhoto 0x000035a4 0x1000 + 9636
    Thread 1:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92bfb284 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x9382d498 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f122c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x010454c8 -[ILMediaBrowserPathWatcher watcherThread:] + 628
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de998 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de29c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c030e4 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92c47e44 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.iLifeMediaBrowser 0x01047690 -[ILMediaBrowserPathWatcher(SpotlightSupport) spotlightWatcherThread:] + 652
    7 com.apple.Foundation 0x92bf4118 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000003efa0c srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042244 xer: 0x0000000000000004 lr: 0x00000000003ef9e0 ctr: 0x0000000092bf3734
    r0: 0x000000000216a1c8 r1: 0x00000000bfffd870 r2: 0x0000000000000000 r3: 0x00000000a2bf159c
    r4: 0x0000000090a908b4 r5: 0x00000000066865f0 r6: 0x00000000006aa0c0 r7: 0x00000000a07bb960
    r8: 0x0000000000000008 r9: 0x0000000000000000 r10: 0x0000000090a3f628 r11: 0x000000000000003c
    r12: 0x0000000092bf3734 r13: 0x0000000000000001 r14: 0x00000000bfffe6b0 r15: 0x00000000006d0000
    r16: 0x00000000006e0000 r17: 0x00000000bffff270 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000006d0000 r21: 0x00000000006d0000 r22: 0x00000000006e0000 r23: 0x0000000000000000
    r24: 0x00000000006d0000 r25: 0x0000000090a908b4 r26: 0x00000000006d279c r27: 0x00000000006dc168
    r28: 0x00000000006e0000 r29: 0x00000000006e0000 r30: 0x000000000a227370 r31: 0x000000000a225b40
    Binary Images Description:
    0x1000 - 0x687fff com.apple.iPhoto 7.1.3 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x76b000 - 0x775fff com.apple.UpgradeChecker 1.0 /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x77d000 - 0x7cbfff com.apple.ImageIO.framework 2.0.1 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image IO.framework/Versions/A/ImageIO
    0x7e9000 - 0x7edfff libGIF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7f2000 - 0x7f4fff libRadiance.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x1008000 - 0x1070fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x10ad000 - 0x10cdfff libJPEG.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x10d4000 - 0x10effff libPng.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x1205000 - 0x12a6fff com.apple.DotMacKit 47 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0x1314000 - 0x136efff libJP2.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x1384000 - 0x13c5fff libTIFF.dylib /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x13cf000 - 0x144bfff com.apple.imageKit 1.0 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image Kit.framework/Versions/A/ImageKit
    0x149b000 - 0x160dfff com.apple.QuartzComposer 2.0 (106) /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Quart zComposer.framework/Versions/A/QuartzComposer
    0x5ad2000 - 0x5ba2fff com.apple.RawCamera.bundle 2.0.1 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x68b6000 - 0x68c0fff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x68c9000 - 0x6940fff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x6995000 - 0x699dfff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x69a5000 - 0x69a8fff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x69ae000 - 0x69b7fff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x69c0000 - 0x69c9fff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x69d2000 - 0x69d7fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x69de000 - 0x69e8fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x6b3c000 - 0x6bddfff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x6d39000 - 0x6d3bfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6da2000 - 0x6e4bfff com.apple.iTunesAccess 7.6.2 /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x8ee6e000 - 0x8ef2afff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x8f760000 - 0x8f7a1fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x8f840000 - 0x8f86efff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.10 (368.33) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91d4f000 - 0x91e3dfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e5c000 - 0x91e5cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e5e000 - 0x91f43fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4b000 - 0x91f6afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd6000 - 0x92044fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9204f000 - 0x920e4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920fe000 - 0x92686fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926b9000 - 0x929e4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a14000 - 0x92b02fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b05000 - 0x92b8dfff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bce000 - 0x92df9fff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f26000 - 0x92f44fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f4f000 - 0x92fa9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc7000 - 0x92fc7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc9000 - 0x92fddfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff5000 - 0x93005fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93011000 - 0x93026fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93038000 - 0x930bffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d3000 - 0x930defff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930e8000 - 0x93115fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9312f000 - 0x9313efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314a000 - 0x931b0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e1000 - 0x93230fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9325e000 - 0x9327bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9328d000 - 0x9329afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932a3000 - 0x935b1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93701000 - 0x9370dfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93712000 - 0x93732fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93786000 - 0x93786fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93788000 - 0x93dbbfff com.apple.AppKit 6.4.10 (824.45) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94148000 - 0x941bafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f3000 - 0x942b8fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9430b000 - 0x9430bfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9430d000 - 0x944cdfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94517000 - 0x94554fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9455c000 - 0x945acfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945b5000 - 0x945cffff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945e0000 - 0x94601fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9463e000 - 0x94683fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947a4000 - 0x947b3fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947bb000 - 0x947c8fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9480e000 - 0x94827fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9482e000 - 0x94b58fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c3f000 - 0x94cb0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e25000 - 0x94f55fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fe8000 - 0x94ff7fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fff000 - 0x9502cfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95033000 - 0x95043fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95047000 - 0x95076fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95086000 - 0x950a3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95495000 - 0x95495fff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95497000 - 0x9551afff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95547000 - 0x9558dfff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x957c5000 - 0x95883fff com.apple.WebKit 4525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x958f1000 - 0x959d9fff com.apple.JavaScriptCore 4525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95a15000 - 0x960e7fff com.apple.WebCore 4525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x965a5000 - 0x9662ffff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x966a8000 - 0x966aafff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x966ad000 - 0x966dffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97673000 - 0x97692fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97d03000 - 0x97d28fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x98005000 - 0x98006fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98af9000 - 0x98af9fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98c28000 - 0x98c4afff com.apple.DiscRecordingUI 3.1.3 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x990ea000 - 0x990edfff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9a553000 - 0x9a55efff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a569000 - 0x9a6c2fff com.apple.MessageFramework 2.1.2 (753) /System/Library/Frameworks/Message.framework/Versions/B/Message

  • Missing photos after migration from iPhoto to Photos

    Last week I upgraded my desktop MacPro from OS 10.9.latest to OS 10.10.3. When I first opened Photos, it did the migration from iPhotos without apparent problem. But I have noticed that many (hundreds at least) of the photos from my pre-migration iPhoto library are now not in Photos. I mounted my pre-upgrade backup drive on a laptop running OS 10.9.latest, and can find specific missing photos OK on the backup. But if I search the main drive on my desktop Mac, for example for "P1440608", I get no results. I have tried rebuilding the Photos library with no change - the missing photos are still missing.
    One option is to erase my MacPro main drive and restore from the backup drive to OS 10.9.latest. This should put me back to where I was. Is there a viable alternative? Please note that my iPhoto version was 8.1.2. It will not open in OS 10.10.3, and the App Store will not let me upgrade to the most recent version. I do have Time Machine plus external bootable (SuperDuper) backup of the desktop MacPro, plus that laptop running OS 10.9.latest as resources available.

    Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Missing 1,693 items after import from Aperture

    My Aperture library had 42,817 originals (46,331 versions; according to the Aperture library selector).
    My new Photos library following the migration has 39,835 photos, 1,287 videos, 2 items.
    Assuming the Aperture count includes everything, this means I'm somehow missing 1,693 items in my new library.
    I'm sort of at a loss as to figuring out how to identify these missing items (photos/videos/whatever). Any ideas?
    I suppose I could just try importing the Masters folder inside the Aperture Library file; in theory it shouldn't import duplicates, but I'm naturally wary.
    Thanks for any tips.

    So it looks like I may have just added back a bunch of duplicates that were sitting in my Aperture trash folder. Better safe than sorry? I'm not so sure.
    The worst part of this is that my library had just finished uploading the 40K items. And after mucking around last night, it looks like it's re-uploading the whole library...again.
    Kill me now.

  • Many duplicates after import from Aperture to Photos

    After a very long import process taking my 155Gb Aperture library and going into Photos, I see many many duplicates of photos.
    I tried to re-import with the same result.
    What's the best way to mitigate this?

    I tried to re-import with the same result.
    What's the best way to mitigate this?
    How exactly did you do that?
    The usual way is to launch Photos by holding down the alt/options key and double clicking the Photos icon in the Dock.
    That will bring up a Library Chooser panel.  Select your Aperture library in that panel.
    The upgrade of the aperture library may take a long time for a large library.
    If that is, how you have done it, you may need to repair your Aperture library before migrating it.
    Open the Aperture library again in Aperture, that you just migrated. Are there any duplicates in the original library, for example in ProtoStream auto import projects, or in recovered folders?
    Then try to delete  these duplicates, while still in Aperture.
    To try to repair and rebuild the Aperture library and the permissions of the library before upgrading it to Photos. do the following:
    Firmly hold down the key combination ⌥⌘, while double clicking your Aperture Library in the "Pictures" folder to launch into the Aperture Library First Aid Tools. Select "Repair Permissions".
    See: Aperture 3 User Manual: Repairing and Rebuilding Your Aperture Library
    If permissions repair does not fix it, try the other first aid options, but make sure, you have a backup copy of your Aperture Library.

  • Missing photos after Import

    Ok here is the deal, I have had problems iporting photos into my iphoto library lately. I imported a rill via the import command and then I got a munch of the ! mark things one for every picture. So then I went into the iphoto library and found that the folder that keeps the rolls was read only ( I sure didnt put it that way) anyways I changed it to read and write, I imported again and now have all the thumbs but when I view them individually I get the ! thing again, plus it keeps telling me to rebuild my thumnail cache, which I don't remember ever having to do before. Any help is appreciated.
    Thanks,
    Zach_

    Zach:
    Welcome to the Apple Discussions. Try the following: download and run BatChmod on the iPhoto Library folder with the settings shown here, putting your administartive name in the owner and group sections. You can either type in the path to the folder or just drag the folder into that field. See if that will make any difference.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Missing photos after import - Canon EOS Digital Rebel

    Hi,
    After two calls to Apple Support I have solved this issue for this digital roll of 12 raw format images. Here are details for whoever might be interested.
    For some reason, iPhoto 6.0.6 was unable to import all of the images from a Canon EOS Digital Rebel camera. 7 out of 12 downloaded fine, however iPhoto seemed to stall at 5 remaining.
    Further efforts to rebuild photo library did not help, and the images were never transferred from the camera to the iPhoto 6.0.6 on MacBook Pro Intel (not in original folder).
    Then I tried to import the images to the iPhoto 6.0.6 on MacBook Pro Intel via a different user. Then I deleted the first 7 images from the memory card, and tried to import with iPhoto and with ImageCapture. None of these worked.
    Then a new memory card with 4 test images (2 large, 2 raw) did import to iPhoto ok.
    Then I used Canon File Viewer Utility to drag the 5 images from the first memory card to the desktop. And then I reformatted that memory card.
    Before deleting or reformatting the memory card I was also able to import the 12 images to a 12in PowerBookG4 with iPhoto5 version 5.0.4 ok.
    From now on however I will be counting the images from card to iPhoto.
    MacBook Pro   Mac OS X (10.4.9)  

    this is answered per calls to Apple Support

  • Missing photos after upgrade from iPhoto 08 to 11

    I just updated iPhoto from '08 (v7.1.5) to '11 (v9.5) and I opened a copy of my old '08 library.  Unfortunately iPhoto '11 does not show any events or photos from this library.  If I view the contents of the library in Finder I see that it still contains a 40 GB 'Originals' folder, but the 'Masters' folder is empty.  Is there a more involved upgrade procedure - that is, instead of simply choosing the old '08 library upon start up?
    I saw this earlier question https://discussions.apple.com/message/23844703#23844703. Though the problem sounds similar the solutions was to give up on importing and adding the photos manually.  There must be a way to preserve my albums, no?
    Thanks.

    Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • No thumbnails/photos after import from backup

    After an import of my iPhoto library most of the photos were gone. Instead I got this dashed line squares. http://yfrog.com/nwrcrp
    How can I repair my library? Any keywords for Google to find some help? I have no clue what to do or search for.

    Your welcome.
    The reason? Could be many, but a damaged database, minor directory damage on your disk or having the Library on an inapporpriately formatted disk might would be some.
    So, if your Library is on an external: what format is that?
    Otherwise:
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  

  • Color changes in photos after exporting from aperture and viewed on another computer

    Help! I import raw images, I'm Proofing with sRGB IEC61966-2.1 and my colorsync profile in my export settings are also set with sRGB IEC61966-2.1. When i export to my computer the pictures look exactly as they should be, but when i email them and see them on other computers the colors are not at all what i be;ieved to have been exported! Im a newbie to the digital world...

    What is your Mac's display color setting?

  • All clips missing after import from camcorder!

    All clips are missing after import from camcorder - Canon ZR20.  For some tapes all clips are there, for others there are none.  All the files are there in the finder, but I don't know how to have them show up in Final Cut Pro X.
    Any suggestions?

    Ok - this is frustrating.  I have been importing my old miniDV tapes again into FCPX as I wasn't able to transfer all of these projects from iMovie - don't get me started...  After importing about 7 of the tapes the first 3 came in fine, but the last 4 didn't have any clips as I said in my original posting.  Now after restarting FCPX a couple of times all of a sudden the clips are all coming in!  Strange!  Guess I'm OK now.

Maybe you are looking for