IPhoto loads images then blacks them out.

Why does iPhoto accept downloads from my camera and after a day or so, blacks out all events.

Try also posting in the iPhoto for Mac forum

Similar Messages

  • Looking for an app where i can draw images then text them?

    Looking for an app where I can draw images then text them?

    Just write Draw into the MAS searchbox in the upper right corner and you will be presented with a plethora of drawing/sketching apps of varying abilities and pricing.

  • Workflow for marking clips and then exporting them out as individual clips with audio?

    Hello,
    I'm just starting to use Prelude.  I recorded an interview for my daughter for a school project last week.  The interview went well, but I want to mark as "sub-clips" all of the video interview's question/answer combos (e.g. "What is your name?  My name is John Doe.") and then save them out to individual clips rather than have to manage the full size files (about 40GB in all from my Panasonic GH3, 50mbps, IPB MOV) with clip markers.  I'll keep the originals as backups, but would really rather work with the individual clip files.
    Any help with this would be greatly appreciated!  I would think this would be a very simple and common function.  Basically, just dividing up the original video into multiple, standalone video clips with the same bit-rate, encoding, etc., but with new headers/EOF markers.  Just chopping the original files up into chunks with no changes or reencoding necessary.  If I can do it the way I imagine it, it should be a very quick process, at least compared to transcoding the files.
    Best regards,
    Scott

    Hi -
    Meg The Dog's suggestion will work if you don't intend to bring in all of your media off the card.  The Partial Ingest method will allow you to selectively create subclips during ingest and not transfer the full original clips.
    However, you do state you plan to keep all your media - not just the parts you want to subclip. So here's my suggestion for the workflow:
    1. Ingest all your media from your cameras (the entire clips - not the partial clip method)
    2. Open each clip from the Prelude Project Panel and create your Subclip Markers using Prelude logging tools.
    3. In the Project Panel you will find new entries will appear for each SUBCLIP Marker you add to your master clips.
    4. You can organize you subclips into BINS as needed to keep track of the segments of your video
    5. When you're ready to create your timeline of subclips you can either
       5a. EXPORT all the SUBCLIPS into their own files (select all subclips you want to export and use the FILE->EXPORT->MEDIA menu command)
       or
       5b. Drag-Drop your subclips into a ROUGHCUT in Prelude to order your story. Then use the SEND TO PREMIERE PRO feature to send the Rough Cut into Premiere pro where you can finish your edit. All the media will come along for the ride into Premiere Pro (including your Subclips). You can then add titles and any effects easily enough in Premiere Pro).
    There are some other options here you can also try out which might be interesting. For example, you can add transitions and any additional audio tracks to your ROUGH CUT directly in Prelude and then EXPORT the Rough Cut as a final movie - and not need to move to Premiere Pro unless you have wider editing needs.
    Hope this helps!
    Regards,
    Michael

  • My Macbook disc drive is spinning discs then spitting them out - any kind too - CDs, DVDs, and blanks.

    From the sound of it the whole thing might be broken.  I've tried resetting the PRAM, doing a full disk repair through disk utility, and testing all sorts of varieties of discs in the slot.  It will accept them, spin them for a bit, then spit them out without ever recognizing them on the screen.  I don't know how long this has been an issue, as the last time I used the drive was in March to play a DVD.  It worked fine at that point.  Is it totally shot? And if so, is there a cheap external version I can use that will work with my laptop?  I'm out of warranty and can't afford to cough up for a new one from Apple.

    All over the internet, you can also pick them up in any electronics store or electronics section of a store (wal-mart for example).

  • Alpha transparency borders on dynamically loaded images for use with textures

    Hi there folks. Well, I have been beating my head over this
    and am hoping one of you can help me out.
    Essentially I have 16bit images that are loaded into my
    shockwave application at run-time. These images are user defined
    which means that I will not know their size ahead of time. Once the
    images are loaded I then create textures and apply them to various
    shaders. Ok, all of this works just fine. What I need to do though
    is create an alpha transparent border around the images, so when I
    apply them to their surfaces I only see the image and nothing
    around it. I am doing this because these images will only appear at
    specific parts on a surface, textureRepeat will be false, and many
    models will be stacked in the same exact location using the same
    model resource. I have everything working, but I cannot figure out
    the alpha part for the life of me. Also, when I test the alpha
    based image by itself it works just fine. It is not until I try and
    combine the 16bit (converted to 32bit at run-time) image that I run
    into problems.
    I have tried:
    - Creating a 32bit alpha image in Fireworks with a
    transparent border and a black rect for the inside. I then copy the
    dynamic image over the alpha image (only after going from 16bit to
    32bit in imaging Lingo) and leave a little room at the edges for
    the transparency. Well, I get a crazy amount of streaks here even
    when I try to up the trans border by around 24 pixels on each side.
    - Using another similiar alpha based image as a mask with
    copyPixels and extractAlpha/setAlpha like this... (code is a little
    rough here)
    newImage = new(#bitmap)
    newImage.name = "place_Test"
    newImage.image = member("place").image
    newAlpha = new(#bitmap)
    newAlpha.name = "AHH"
    newAlpha.image = image(newImage.image.width + 24,
    newImage.image.height + 24, 32)
    newAlpha.image.useAlpha = true
    newAlpha.image.copyPixels(member("vase").image,
    newAlpha.image.rect, member("vase").image.rect)
    newAlphaInfo = newAlpha.image.extractAlpha()
    newAlpha.image.useAlpha = false
    --reverse dark to light
    iAlphaReverse = image(newAlpha.image.width,
    newAlpha.image.height, 8, #grayscale)
    iAlphaReverse.fill(iAlphaReverse.rect, rgb(0,0,0))
    iAlphaReverse.copyPixels(newAlphaInfo, iAlphaReverse.rect,
    newAlphaInfo.rect, [#ink : #reverse])
    --newAlphaInfo.copyPixels(iAlphaReverse, newAlphaInfo.rect,
    iAlphaReverse.rect, [#ink:#subtractpin])
    newAlphaMask = iAlphaReverse.createMask()
    rescaleAbs(newImage, newImage.image.width,
    newImage.image.height, "place_Test", 32)
    destImage = member("place_Test").image.duplicate()
    destImage.fill(destImage.rect, rgb(0,0,0))
    newAlpha.image.useAlpha = false
    destImage.copyPixels(newImage.image, newImage.image.rect,
    newImage.image.rect, [#maskImage:newAlphaMask, #ink:#add])
    destImage.setAlpha(iAlphaReverse)
    destImage.useAlpha = true
    member("place_Test").image = destImage
    I apologize for the messy code. I have cut and pasted from
    all over the place and am getting confused. In any case, I think I
    am making this harder then it needs to be and hope someone can
    help.
    Thank you in advance,
    Dave

    Hi, you can try using other texture layer as mask on the same
    shader. As usually you create the texture from a dynamic loaded
    image, then apply this texture to the shader on the texture list
    index 1 (textureList[1]). Next part does the job, create other
    texture from a 32 bits image with the alpha information and fill
    all pixels with white color, this is very important because the
    second texture layer will be multiply with the first texture layer.
    This texture set its render format to rgba8888. Apply the mask
    texture to the same shader at texture list index 2, verify that the
    blendFunctionList index 2 is #multiply.
    I include the code of a project that use this masking
    approach:
    property pMember
    property pEarthSphere
    property pNightSphere
    property pLastTransform
    on beginSprite me
    pMember = sprite(me.spriteNum).member
    me.setupWorld()
    end
    on setupWorld(me)
    pMember.resetWorld()
    repeat with i = pMember.light.count down to 1
    pMember.deletelight(i)
    end repeat
    vEarthModelResource = pMember.newModelResource("EARTH MODEL
    RESOURCE", #sphere)
    vEarthModelResource.radius = 50.000
    vEarthModelResource.resolution = 20
    vEarthTexture = pMember.newTexture("EARTH TEXTURE",
    #fromCastMember, member(3,1))
    vEarthShader = pMember.newShader("EARTH SHADER", #standard)
    vEarthShader.emissive = color(255,255,255)
    vEarthShader.flat = TRUE
    vEarthShader.transparent = FALSE
    vEarthShader.textureList[1] = vEarthTexture
    pEarthSphere = pMember.newModel("EARTH MODEL",
    vEarthModelResource)
    pEarthSphere.shaderList = vEarthShader
    vNightModelResource = pMember.newModelResource("NIGHT MODEL
    RESOURCE", #sphere)
    vNightModelResource.radius = 50.2000
    vNightModelResource.resolution = 20
    vNightTexture = pMember.newTexture("NIGHT TEXTURE",
    #fromCastMember, member(4,1))
    vNightTexture.quality = #lowFiltered
    vNightTexture.nearFiltering = FALSE
    vNightTexture.renderFormat = #rgba8880
    vNightShader = pMember.newShader("NIGHT SHADER", #standard)
    vNightShader.emissive = color(255,255,255)
    vNightShader.flat = TRUE
    vNightShader.transparent = TRUE
    vNightShader.textureList[1] = vNightTexture
    vMaskNightTexture = pMember.newTexture("MASK NIGHT TEXTURE",
    #fromCastMember, member(6,1))
    vMaskNightTexture.renderFormat = #rgba8888
    vNightShader.textureList[2] = vMaskNightTexture
    vNightShader.textureModeList[2] = #wrapPlanar
    pNightSphere = pMember.newModel("NIGHT MODEL",
    vNightModelResource)
    pNightSphere.shaderList[1] = vNightShader
    pNightSphere.parent = pEarthSphere
    end
    on exitFrame(me)
    pEarthSphere.rotate(0.0,0.1,0.0)
    me.moveMaskNightTexture()
    end
    on moveMaskNightTexture(me)
    vRotationVector = - pEarthSphere.transform.rotation
    pNightSphere.shaderList[1].wrapTransformList[2].rotation =
    vRotationVector
    end

  • My mac space was full, and i noticed that i had 10,000 images, so i deleted all of my images and emptied the trash, now i they don't appear on iphoto or anywhere, is there anyway i could get all of those images back so i can then store them in a device?

    my mac space was full, and i noticed that i had 10,000 images, so i deleted all of my images and emptied the trash, now i they don't appear on iphoto or anywhere, is there anyway i could get all of those images back so i can then store them in a device?

    yes, its the macbook air and mac OS X 10.7.4, not sure how that goes, about the time machine and time capsule, i only started using it today, when they were already deleted, also read at the support and help of iphoto, that if you delete your images from the picture folder that the images will be corrupted permanently, does this mean there there is no actual way of getting them back?
    Thanks for the help x

  • IPhoto Won't Load Images in iPhoto Library from External HD

    Hi all.
    Accidentally unplugged my father's external hard drive which hosts his iPhoto library without ejecting. Since then, iPhoto has opened the library but displayed zero content. The photos are still there, I located them in the iPhoto Library's "Old Masters" folder, however, the "Masters" folder is empty. As I said, the images are there, but I suspect they aren't in the right place for iPhoto to see and display them. How can I get them back?
    He has a mid-2007 iMac running both the latest version of Yosemite and iPhoto.
    Thanks!
    Kyle

    No, unfortunately. He has a 320gb HD and a 307gb library. However, that post reflects all of the symptoms we had. I'll check it out. Thank you!
    If substituting "Old Masters" for "Masters" does not help, there is not much hope to fix this. The iPhoto Library First Aid Tools did not work in the previous similar cases.
    The best option would be to restore the library from the most recent backup.  Otherwise you can only copy the "Old Masters" out of the library and reimport them to iPhoto into a new library and essentially start over. IPhoto has no tools to connect missing original image files to the edited versions like Aperture has.

  • IPhoto Stuck on "Loading Images"...

    I just uploaded about 1000 pictures to iPhoto and at first it was having trouble recognizing my camera and was acting a bit sluggish. I got all of the photos uploaded but during that process it quit twice unexpectedly.
    On the last reboot, there was a message that said that it might be possible to fix the problem if I reset something and relaunched it, but I just chose to relaunch without resetting. Now when I open iPhoto, none of my pictures or albums come up, it just keeps saying "Loading Images" with the scroll spinning next to it.
    I tried to trash the pfile, but the problem persists.
    *Please help!*

    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library allowing it to overwrite the damaged file.
    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.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 6* library:
    Note this will give you a working library with the same Rolls and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library on your desktop and find the Originals folder. From the Originals folder drag the individual Roll Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Regards
    TD

  • When i use IE9, i go to my emails and any pics in the mail open with the mail but with FF i have to download them is there a way to make the pics open in the mail, i set yahoo to load images automatically in the options menu this has had no effect, thanks

    some pictures(jpeg or gif) come as part of email if i use IE9 these images open as part of the mail, but with firefox i have to download them separately and then they don't appear in email. i have been in the options menu and allowed yahoo.com to automatically load images but this has had no effect, thanks

    Sounds like you did this on the fly.
    MM is supposed to open the Marker Panel Dialogue
    M just sets a marker
    Not sure if either are intended for on the fly during playback .
    There is also a Marker Icon on the Source Window Pane  >>

  • How do you make an array of image icons and then call them?

    How do you make an array of image icons and then call them, i have searched all over the internet for making an array of icons, but i have
    found nothing. Below is my attempt at making an array of icons, but i cant seem to make it work. Basically, i want the image to match the value of the roll of the dice (rollVal)
    Any help would be greatly appreciated, some code or link to tuturial, ect.
    /** DiceRoller.java
    * Roll, print, Gui
    import javax.swing.*;
    public class DiceRoller extends JFrame
         private ImageIcon[] image  ;
         public String[] images = { "empty", "dice1.jpg",
                   "dice2.jpg", "dice3.jpg", "dice4.jpg",
                   "dice5.jpg", "dice6.jpg" };
         public Dice die;
         private int rollVal;
         public int rollNum;
         private JLabel j1;
         public DiceRoller(){
              j1= new JLabel("");
           die =new Dice();
           int rollVal;
           rollVal = die.roll();     
           image = new  ImageIcon[images.length];
         for(int i = 0; i < images.length; i++){
          image[i] = new ImageIcon(images);
         if (image!=null){
              j1.setIcon(image[rollVal]);
         System.out.println("Roll = "+die.roll());

    Demo:
    import java.awt.*;
    import java.net.*;
    import javax.swing.*;
    public class IconExample {
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable(){
                public void run() {
                    launch();
        static void launch() {
            try {
                Icon[] icons = new Icon[6];
                for(int i=0; i<icons.length; ++i) {
                    String url = "http://www.eureka-puzzle.be/cast/images/dice" + (i + 1) + ".jpg";
                    icons[i] = new ImageIcon(new URL(url));
                display(icons);
            } catch (MalformedURLException e) {
                throw new RuntimeException(e);
        static void display(Icon[] icons) {
            JPanel cp = new JPanel();
            for(Icon icon : icons) {
                cp.add(new JLabel(icon));
            JFrame f = new JFrame();
            f.setContentPane(cp);
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

  • Loader will load images from another server, but then we get error on Bitmap operation

    I'm developing an app that currently is using Loader to get images from another server.  This shouldn't currently work since we are still waiting for the owner of that server to put a crossdomain file in place.  However, it does work -- sort of .
    Loader can load the images fine, without an error.  But then the app has a feature in which we are making a larger duplicate of the image to display in a sidebar, we do this in this manner:
    var myBitmap:Bitmap = Bitmap(loader.content);
    and when this runs we get a Flash player security error 2122, sandbox violation.
    So while I'm hoping all this will fix itself when the crossdomain.xml file is put in place, I'm confused as to why we only get the sandbox error when we make a Bitmap from the image, and not when we initially try to retrieve the image.
    (Incidentally: is there a better way to make a "copy" of an image loaded by a Loader, and then change its width and height for simultaneous display in another part of the stage?  I don't need to change its actual dimensions -- I just need to change its display width and height.)
    Thanks!

    The sandbox allows viewing, not editing from another server without a crossdomain.
    So, when you try to load it up, it loads it, but "read-only" and gives you an error when you try to "edit" it by making a new Bitmap out of it.
    This should resolve itself once that crossdomain is in place.
    ||EDIT||
    I just realized I should clarify my statement a little more.
    When you load images from another server without a crossdomain, it allows the load for display only.  When you try to load data, it will fail.  This is because, XML data, or some other type of data is editable by default, and images are only viewable by default.  So, the image fails when you try to convert it into an editable form.

  • I want to copy images from my Photoshop Elements to I Photo then upload them to my website.

    I want to copy or transfer images from my Elements10 to IPhoto, then upload them to my website on Smugmug.

    You can probably upload directly from your photo file as well....I have a site at smugmug as well and that's how I used to do it all the time

  • IPhoto 11 images are all black

    I had my hard drive replaced, and after restoring from backup, iPhoto displays all my images as black.
    I used the option-command startup and rebuilt everything. No difference.
    I used the iPhoto Library Manager to create a new library. No difference.
    I deleted the plist file and cache directories. No difference.
    I fixed file protections using Disk Manager (as well as with both startup and Lib Mgr). No difference.
    If I SHARE a photo - the share function finds the original file just fine and will happily share it.
    I create a NEW iPhoto library, imported a dozen pictures by dragging them from my Desktop into iPhoto - and I get exactly the same behaviour.
    This is on a late 2011 iMac.
    Any other suggestions?  I'm really stumped!

    Exactly what is black? The thumbnails? The full size image?
    Regards
    TD

  • Has anyone seen this Dyld Error Message:   Library not loaded: /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow   Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto   Reason: image not found

    Getting this error on iPhoto open it refers to iLifeSlideShow and iPhoto quits - or doesn't open.
    Dyld Error Message:
      Library not loaded: /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
      Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto
      Reason: image not found

    Yes, some perople have seen this. Options:
    1. Try reinstall iPhoto. (see below)
    2. If you have access to another Mac with the same version of the OS, try and copy that framework over
    3. Reinstall the OS.
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.
    Regards
    TD

  • Iphoto will not load images

    Good Day,
    Im trying to fix and issue that I have with Iphoto.
    What is happening Iphoto loads and shows the thumbnails fine for all the images that are in the Iphoto Library and the albums but when I go to load an image all it does is sits there an has the spinning broken wheel and then it does nothing.
    I have tried some of the suggestions that ive seen in the disscusions but nothing seem to work.
    It is running the latest version of Iphoto and all updates are done.
    This is the Iphoto that came with Tiger that came with the Ibook
    thanks
    Tim

    Hmmm,
    How do you feel about importing the images from the library on the desktop to the new library?
    Open iPhoto with the new library. To import the images from your old library
    Go to File>add to library
    Navigate to the old library on your desktop and highlight it in the window, then click the "open" button.
    iPhoto will start importing the images from your old library
    This is what to expect:
    Your images will be imported in nice dated rolls. (make sure your view is set to sort by rolls to see it) There are a couple of caveats to this. You will get rolls named "Originals" These rolls will contain your video clips and your original images that you had edited. If you had RAW files they would be in those rolls too (I don't do RAW, so I don't know for sure) Delete what you don't want from those rolls. You will also get the jpeg pointer files to your video clips imported. They will just be jpegs and will not point to the video clips anymore as iPhoto made new ones when the clips were imported again. You can delete those. they should be in a roll right next to the newly imported video clips so they are not hard to find. The thumbnail files don't get imported as iPhoto makes new ones when the images are imported.
    Once all you images have been imported, check through the library and make sure everything looks ok.
    You can now start making your Albums, and do your keywords or any other organizational steps.
    You can also delete the old library on the desktop.
    It is also a good time to backup this new library to CD/DVD by burning the iPhoto LIbrary folder in the Finder, or copying the iPhoto Library folder to an external drive formatted for Macs, or copying the iPhoto LIbrary folder to an iPod.
    Good luck!
    Lori

Maybe you are looking for

  • Why is not the E90 available on all the other netw...

    I have a Nokia 9500 on the Orange network. I need to change this quickly because the phone is falling to pieces. However orange have told me that the phone is not available to them. I have sent an email to nokia but they have not replyed & this has b

  • Slow Shutdown after Mavericks upgrade

    My macbook pro takes longer to stut down than it used to do.  Before Mavericks it took about a second to shut down.  Now it takes at least 10 seconds.  Below is my system log  and below that is an etrecheck scan result.  Any help in restoring the shu

  • ITunes permissions simply won't repair!

    I've clicked repair permissions about 10 times, and the same errors keep popping up. Get ready for tons of unrepaired permissions: Repairing permissions for “Macintosh HD” Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/

  • Opening itunes when windows starts

    Hi, I was wondering how i get iTunes to automatically start in my system tray when I log onto my screename?

  • What's the FASTEST configuration?

    I'm a new guy to the FCP 2 studio. I'm learning the ropes and the diffrerences from my old PC system. I can't seem to get good speed for rendering, all stuff, etc...especially compressor 3 processing (yuk!) ...an hour fto compress :30sec of Motion???