Photos not importing into Iphoto

I am consolidating a couple photo libraries.  My default library opens fine.  The other libraries I have exported to a folder on my desktop.  I go to import photos from the desktop folder and everything seems to be fine.  Import progress is shown, picture count goes up and I can see all the photos. 
Once I exit Iphoto and reopen the pics are not there.  I have done this a number of times and am wondering what is wrong.
The default location of my library is in my Users/Shared/Iphoto Library folder.  I was told to keep them in that folder that way my wife and I could use the same library from different user accounts.
Thanks,
Don

The only way to merge Libraries is with the paid version ($20) of iPhoto Library Manager
You're just exporting files from one and importing to the other. You're missing metadata, versions, edit history and so on.
As to the problem described:
Option 1
Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
If that fails:
Option 2
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. .
Regards
TD

Similar Messages

  • .CR2 will not import into  iphoto 08 7.1.5

    I have a few hundred photos taken by a friend that i am trying to import into my iphoto library.
    Getting an unrecognizable file message.
    I shoot on a Canon XSi in RAW and have no issues importing to iphoto, Apature or photoshop....
    her images were shot on a Canon TSi in RAW and will not import into any of my programs.

    The fact that you can use the Raws from your XSi is of no relevance.
    The Raw from every model of camera is different. Note: that's every model not every brand. So, the NEF produced by a Nikon D40 is not the same as the NEF produced by a D60, the CR2 produced by a Canon 350 is not the same as the CR2 produced by a Canon 400.
    Changing the Raw specification is one of the ways of upgrading the cameras.
    IPhoto and Aperture support -  or don't -  the same cameras.
    Regards
    TD

  • TIP: What to do if the Recovered Photos File will not import into iPhoto...

    Like many others in this forum, I just upgraded to iWork/iLife '06. When I installed iPhoto '06 it trashed my existing iPhoto Folder and placed all of my other existing photos (those not already imported previously into iPhoto) into a recovered photos file. I tried and tried and tried to import those "recovered photos" into iPhoto but it kept returning an error message on import "Unreadable file"
    Finally I selected the "recovered files" then clicked on "Get Info" and found that the permissions were "locked" with a padlock icon. Clicking once on the padlock opened the permissions back to me the "owner" and the iPhoto allowed me to import all of those 425 "recovered photos". Whew! I hope this tip helps someone else out - I had to figure this out on my own...

    The fact that you can use the Raws from your XSi is of no relevance.
    The Raw from every model of camera is different. Note: that's every model not every brand. So, the NEF produced by a Nikon D40 is not the same as the NEF produced by a D60, the CR2 produced by a Canon 350 is not the same as the CR2 produced by a Canon 400.
    Changing the Raw specification is one of the ways of upgrading the cameras.
    IPhoto and Aperture support -  or don't -  the same cameras.
    Regards
    TD

  • Delete photo after imported into iPhoto?

    I'm trying not to have duplicate photos staying on the same harddrive after I import them into iPhoto.
    So, can I archive the original photo off my hard drive to an external after I import them into iPhoto?
    I know it's perhaps a silly easy question, but I thought that I would ask before I start moving pictures off to my external drive.
    Many thanks,

    Assuming that you are using the default (and very strongly recommended) managed library you have no need to keep the source image
    LN

  • Aperture 3 Places Data not Imported Into iPhoto

    I tagged the location of a set of photos in Aperture 3 using Places. Then i went to iPhoto, and used the import from Aperture function to bring the whole set into iPhoto in a single move. One of the 24 images carried the Places data with it; the rest had no location associated with them. I suppose this is a bug, but if anyone else had this experience or has a suggestion for a fix, please weigh in. Thanks.

    Ok, just discovered that it's not an issue with the handling of zero's in GPS coordinates, but a problem with filename or file paths containing invalid characters - I've had folders such as "FA Cup final (mum's photos)".
    So I've picked up a tiny amount of apple script and tweaked the code some more. PLEASE CAN I STRESS I KNOW VERY LITTLE ABOUT APPLE SCRIPT SO USE AT YOUR OWN RISK; it does work fine for me though!
    All credit to Juri Pakaste at http://juripakaste.fi/cgi/pyblosxom.cgi/iphoto-geodata-applescript.html
    -- This applescript will geotag the selected photos with the
    -- location information set in iPhoto.
    -- You must have exiftool installed; by default it's loaded from
    -- /opt/local/bin, where MacPorts installs it from the package
    -- p5-image-exiftool.
    -- Author: Juri Pakaste (http://www.juripakaste.fi/)
    -- Based on the Set Geo Data.scpt script by
    -- Andrew Turner (http://highearthorbit.com)
    property exifToolOriginal : "_original"
    property exifToolPath : "/usr/bin/exiftool"
    on extract_decimal(realnum)
    log "extracting decimal from " & realnum
    repeat while realnum > 1
    log "realnum now " & realnum & ", subtracting 1"
    set the realnum to realnum - 1
    end repeat
    realnum
    end extract_decimal
    on roundFloat(n, precision)
    set x to 10 ^ precision
    (((n * x) + 0.5) div 1) / x
    end roundFloat
    on d2s(degs)
    log "enter d2s"
    if the degs < 0 then
    set the degs to degs * -1
    end if
    set the degrees to round degs rounding down
    set the minssecs to extract_decimal(degs)
    log "minssecs: " & minssecs
    set the minssecs to minssecs * 60
    set the mins to round minssecs rounding down
    set the minssecs to extract_decimal(minssecs)
    log "minssecs 2: " & minssecs
    set the secs to minssecs * 60
    "" & degrees & "," & mins & "," & roundFloat(secs, 2)
    end d2s
    on exportCoords(image_file, lat, lng, alt)
    set the northSouth to "N"
    set the eastWest to "E"
    if the lat is less than 0 then
    set the northSouth to "S"
    set the lat to the lat * -1
    end if
    if the lng is less than 0 then
    set the eastWest to "W"
    set the lng to the lng * -1
    end if
    log "calling d2s on " & lat
    set the latstr to my d2s(lat)
    set the lngstr to my d2s(lng)
    set exifCommand to exifToolPath & " -GPSMapDatum=WGS-84 -gps:GPSLatitude='" & latstr & "' -gps:GPSLatitudeRef='" & northSouth ¬
    & "' -gps:GPSLongitude='" & lngstr & "' -gps:GPSLongitudeRef='" & eastWest ¬
    & "' -xmp:GPSLatitude='" & latstr & northSouth & "' -xmp:GPSLongitude='" & lngstr & eastWest & "' -xmp:GPSMapDatum='WGS-84'" & " -xmp:GPSVersionID='2.2.0.0'" & " \"" & image_file & "\""
    -- display dialog of ("running: " & exifCommand)
    set output to do shell script exifCommand
    -- display dialog of output
    do shell script "rm \"" & image_file & "\"" & exifToolOriginal
    end exportCoords
    tell application "iPhoto"
    activate
    try
    copy (my selected_images()) to these_images
    if these_images is false or (the count of these_images) is 0 then ¬
    error "Please select one or more images."
    repeat with i from 1 to the count of these_images
    set this_photo to item i of these_images
    tell this_photo
    set the image_file to the image path
    set lat to the latitude
    set lng to the longitude
    set alt to the altitude
    end tell
    if lat < 90.1 and lng < 180.1 then
    my exportCoords(image_file, lat, lng, alt)
    else
    display alert ("No location set for " & name of this_photo)
    end if
    log "read image, lat: " & lat & ", lng: " & lng
    end repeat
    display dialog "Geo Exif write complete."
    on error error_message number error_number
    if the error_number is not -128 then
    display dialog of ("failed on: " & image_file)
    display dialog error_message buttons {"Cancel"} default button 1
    end if
    end try
    end tell
    on selected_images()
    tell application "iPhoto"
    try
    -- get selection
    set these_items to the selection
    -- check for single album selected
    if the class of item 1 of these_items is album then error
    -- return the list of selected photos
    return these_items
    on error
    return false
    end try
    end tell
    end selected_images

  • Delete photos after import into iPhoto

    Is it possible to delete the photos on the mac after they have been imported to iphoto?

    Yes, if you're running a default Managed Library. In that scenario the file are copied into the iPhoto Library on import.
    A Managed Library, is the default setting, and iPhoto copies files into the iPhoto Library when Importing. The files are then stored in the Library package
    A Referenced Library is when iPhoto is NOT copying the files into the iPhoto Library when importing because you made a change at iPhoto -> Preferences -> Advanced. (You unchecked the option to copy files into the Library on import) The files are then stored where ever you put them and not in the Library package. In this scenario you are responsible for the File Management. 

  • File name not importing into iPhoto

    I keep my photos on an external disk and import them from that disk into iPhoto. When I import, sometimes the file name is imported into the caption field and sometimes it does not.
    Any ideas why? I have search for others posts but can't find any. I did check the permissions of the files representing both results and the permissions are the same.

    What is displayed in the title field under the thumbnails?
    Have you tried selecting the offending photos, going to the Photos->Batch Change menu and selecting Title to File Name option?
    Click to view full size

  • Nikon D3300 NEF files not importing into iPhoto with Yosemite. Videos import, photos come in black

    I'm having issues importing NEF (Raw) photos since I upgraded to Yosemite. I also updated iPhoto to the most current version. The videos will import, but the photos are coming in black. I can see them in the Nikon photo viewer on the Mac with no issues.

    There are a series of posts on the forum right now detailing issues with Raw support. By no means all folks have them - I don't for instance - but many seem to.
    Try the fix in this thread
    RAW files suddenly show up as "not supported" (Aperture 3.5.1, OS X 10.10)
    which basically trashes the Raw support and reinstalls it on your Mac.
    As always, back up first,

  • How can I manually attach images from my photo booth (imported into iPhoto) to emails? Auto function, in photo booth has my photos lying sideways?

    How can I manually attach images from my photo booth to iCloud emails?
    They are imported as 'events' into my iphoto library.
    Auto function, in photo booth has my photos lying sideways when placed in 'mail' emails?

    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • Sony WX7 .mts video files not imported into iPhoto 11

    Apple indicates iLife ’11 supports AVCHD (.mts) files, however, I've been unable to get iPhoto 11 to import video files from the Sony WX7 camera. Photo's are imported properly via both usb and directly from the SD card reader in my Macbook Pro (i7) 2011, however, video files are not.  I've read that iMovie '08 supports Sony AVCHD 2011-model video cameras, but iPhoto 11 appears not to.
    Mac OS X v10.6.7, is fully up to date. Has anybody found a solution?

    Not sure where you are seeing that AVCHD is supported in iPhoto '11 but it is not - use iMovie to import your AVCHD movies - that works for my my Sony DSC-HX5
    LN

  • Panasonic LX5 RAW not importing into iPhoto 09

    I cannot import RAW photos taken with my Panasonic LX5. I assume that they are not supported yet. If i upgrade to iPhoto '11, will it support panasonic LX5 RAW?
    When I search iPhoto help to see what camera's RAW files are compatible with iPhoto, I am redirected to Aperture 3's RAW compatibility listing. The help page says that the compatibility is the same for both Aperture and iPhoto and that listing says that Panasonic's LX5 is supported; however, there is a footnote that says Aperture 3 is required. Based on the fact that my RAW files won't open in iPhoto 09, it seems that the compatibility is not the same for iPhoto and Aperture.
    I would much rather continue using iPhoto; so before I upgrade to iPhoto 11 or purchase Aperture 3, I would like to get a straight answer about iPhoto 11 supporting LX5's RAW.

    It can't be done anywhere if you shoot Raw.
    The workflow in your camera is as follows
    Step 1: Take the shot -  this creates the Raw. The Raw is the data from the camera sensor and by definition this has no processing done on it.
    Step 2: Process the Raw using the settings you have chosen and save it. That's saved as a Jpeg.
    The Raw is what happens before processing. After processing it's not a Raw anymore.
    The point of shooting Raw is that you decide what - and how - the effects are applied to the data, not the Camera. If you want the camera to do it, why are you shooting Raw?

  • Just installed Iphoto 6 and many photos will not import to Iphoto...

    About half of my photos from one of my rolls from this Spring will not import into Iphoto6. I can open them up from my hard drive but they will not import into Iphoto. Any tips?
    g4 tower   Mac OS X (10.3.9)  

    Chris:
    Even though you've gotten back up and running if you have any thumbnails that show up as blanks again try the following: download and run BatChmod on the iPhoto Library folder with the settings shown here, substituting your account name for mine. You can either type in the path to the folder or just drag the folder into that field.
    The blank thumbnails after updating to v6 are often a result of permissions on the files getting messed up somehow preventing you from having access to them. Running BatChmod on the library folder as demonstrated will force the correct ownership and permissions on all of the files.
    Do you Twango?

  • IPhone sometimes won't delete all the photos after I import into iPhoto

    Every so often, my iPhone 3GS won't delete some photos after importing into iPhoto and choosing "delete originals." It deletes most of the originals but strangely keeps a certain number around. My basic routine is to "Import All" and then "Delete Originals." This works 98% of the time, but sometimes the iPhone just gets hung up and won't delete the originals until I manually do it from the iPhone itself.

    I was looking further into this and I found out that on my Macbook Pro's System Preferences. In the iCloud settings, the "Photos" setting was checked and in the Options next to that, the "My Photo Stream" and "Photo Sharing" was also checked.
    I think this was the main problem. After I used iTunes to sync with the photos maybe there was some cache settings or something residual left on the iPhone which let to it being continuously restoring.
    This is the fix which I used. It is fine now.
    Check in System Preferences for - iCloud >> Photos is unchecked.
    Check in System Preferences for - iCloud >> Photos >> Options >> "My Photo Stream" and "Photo Sharing" is unchecked.
    Temporarily delete account for iCloud settings on iOS device - Settings >> iCloud (This didn't affect my main iCloud account only deleted my information on the device)
    Re-sync iOS device with iTunes.
    Set up your iCloud account on iOS device again.
    Hope this helps for anyone having this problem.

  • Converting TIFF to JPEG with sips, then import into iPhoto problems

    I am cataloguing a box of slides and negatives for my family. The scanner generates huge TIFF files (on purpose), and I have an Applescript that then uses sips to copy them into low quality JPEG files using this command:
    do shell script ("sips -s format jpeg -s formatOptions low -s description " & "'" & "Original path: " & (POSIX path of an_image) & "'" & space & (POSIX path of an_image) & " --out " & new_file)
    where an_image is the source file, and new_file is the path and name of the converted image.
    This way, I can save the original file path as the image's description while shrinking the file size to speed up later importing into iPhoto. As part of the iPhoto import, that description from the metadata is placed in the on screen comment section for each image.
    This works fine to do the initial shrinking, but less than half of the resulting jpeg files can subsequently be imported into iPhoto. I get this error:
    The following file could not be imported. (The file is in an unrecognizable format.)
    And yet, Preview and Safari both open the files with no problems.
    Is there anything else I need to set when doing the conversion with sips to make it easier for iPhoto to recognize the converted files?
    I have over 1000 images, and anticipate a final total of about 2500 when I am done. These are images of myself and my siblings from the 1960s and 1970s, and my idea is to scan them all at high resolution, and use the converted, smaller files for iPhoto for keywording and Faces to get them organized, while retaining the paths to the original images. Any commentary is appreciated.

    I have uploaded one of the bad JPG files here:
    www.mrcodeboy.com/smith/Try.jpg
    I tried examining the metadata with exiftool, Image Events, and mdls, but there are a number of differences between the TIFF metadata and the JPEG metadata structures. I found no obvious differences, but this is a good idea, and I will continue to examine those closely for clues.
    *EDIT*
    I downloaded the bad JPEG above onto a different machine; it still does not import into iPhoto. However, by invoking sips on that file to convert it back to a TIFF file thusly:
    sips -s format tiff Try.jpg --out TryTF.tif
    it imported just fine. There has to be some sort of parameter that is NOT being addressed in the conversion from TIFF to JPEG that is somehow messing this up, yet is preserved when the file is re-written as a TIFF.
    Message was edited by: casdvm

  • I need help proving the date tag on a photo stored in my iPhoto is from the date it was sent to my iphone/date it was imported into iphoto - and that it is NOT the date the photo was actually taken.  Please help!

    I need help proving the date tag on a photo stored in my iPhoto is from the date it was sent to my iphone/date it was imported into iphoto - and that it is NOT the date the photo was actually taken.   I recieved a photo via text on my iphone and then I synced my iphone to my macbook and now it is in iphoto.  I already know that the date on the photo per the tag that shows up on it in iphoto is NOT the date the photo was actually taken.  I need article or literature or something confirming the tag is from when it was sent to the iphone and/or when it was imported.  I greatly appreciate some assistance!

    All I am trying to do is find something on a forum board or article etc stating that the the date showing in iphoto could be the date it was imported or synced or sent to me and not the actual date taken.
    The date on the photo could be anything because you can edit the date with iPhoto or any of 100 apps, free and paid for. So, the date on the photo will prove nothing, I'm afraid.
    Regards
    TD

Maybe you are looking for

  • Apple app store card payment

    Hello there, I have had my iPad for over a year now and it has never asked me for my card details only thing it has asked me for is to confirm my password when I'm buying something, but recently it has started asking me for my bank details now I put

  • Minimize Desktop software to System Tray, not to Taskbar?

    I'm not usually a technical dunce... but I can't find the option switch for this seemingly obvious request. I want to have Desktop software (6.0.0) running whenever I have my computer active; but I don't want to have it take up space on my taskbar (W

  • I have forgotten my password to unlock my ipod touch. I

    I am unable to unlock my ipod touch.

  • How do you load brushes in CS5?

    I have jumped from CS2 to CS5. I am using Windows with the Vista operating system. I can't seem to load brushes.  I have loaded the .abr files in the Adobe>Adobe PhotoshopCs5>Presets>Brushes folder. When I go to load brushes none (including the prese

  • Acrobat 8.0 professional

    I need to redownload my acarobat 8.0 professional and I cannot find where to get the download.  I registered this and purchased from adobe they have the informaiton on the site but no way to download can anyone help.