Very slow to show thumbnails of EOS 5DMarkII

I've just bought a mackbook pro with preinstalled aperture 2 (snow leopard 10.6).
I use a canon 5DMarkII since few months and I would like to import my images into aperture.
I've imported 20 images in a new project. But, the creation of thumbnails is very slow (after 2 hours there is no thumbnails visible...).
If i visit this page http://www.apple.com/fr/aperture/specs/raw.html the 5DmarkII is not supported. Is that true ?
It's terrible if aperture 2 is not able to work with the camera.
Do you have any experience ?
Thanks

That's definitely not right, I use a 5d2 and if you have 4gb of Ram you should be fine. Check these things:
1. Make sure your GPU is set to Dedicated/performance under the energy saver system preferences.
2. Go into your aperture preferences and under "previews" turn off "new projects automatically generate previews", and turn on "use embedded JPEG from camera when possible".
3. Unless you want to use high quality previews, turn on a size limitation for previews down to the size of your monitor.
Other tips:
If you have a new macbook, you can also benefit from booting into 64 bit kernel (from my experience) hold down 6 and 4 while booting or read up on how to activate the 64 bit kernel by default in the Boot.plist preference file.
I also recommend not using a "managed" library which will allow you to move your master RAWS around if needed, and create a workflow opportunity similar to video editing with online/offline media. The easiest way to do this is to decide on a folder you want to store all your RAW files, and then in the aperture import dialog where it says "store files in aperture library" - change that to your own folder, and decide on your own subfolder structure - (for example, use /"project name"/"year"/"month") or whatever makes most sense for you. I shoot weddings and never shoot more than 9999 pictures a wedding, so I just use "/project name" - This way when I need to archive a job and its raw masters, I can pull that Folder of Raws off my machine and move it on to backup, but i can still keep the library intact if I need to find a file, I can easily pull the raw back online.

Similar Messages

  • I have an iMac4.1 and my iPhoto is very slow and the thumbnails correspond to the wrong pictures.  How do I fix this? Or is my iMac too old?  Will getting a new iMac solve this problem?.

    I have an iMac4.1 and my iPhoto is very slow and the thumbnails correspond to the wrong pictures.  How do I fix this? Or is my iMac too old?  Will getting a new iMac solve this problem? 
    I realize is only 512MB of memory but I want to make sure that a new iMac will solve this problem.  Can the new iPhoto handle 10GB or more of photos?  Or do I have to go to Picasa anyways in which case I can buy any computer to do that?

    The model of Mac is not partcularly relevant, it's the version of the OS and iPhoto that matter.
    iPhoto - since 2006 - is good for 250,000 images.
    Regards
    TD

  • Applet very slow and shows no activity, but its running

    I have a new applet for the users, but I am reluctant to implement until I get some others opinions. It is very slow (30 - 40 seconds)
    Before it outputs a screen with about 20 lines, it reads 90 different html files. It looks at the forth rec of each to extract a name. It also gets the file size to determine if the record needs to be on the screen.
    Anyway, it does 4 reads on 90 files. = 360 reads. Oops, it also reads and loads a 80 record file at the beginning. So total is 440 reads.
    It takes 30 - 40 seconds. Which is not horrible, but it is not good. What really bothers me is that the applet screen shows no activity. At the bottom is shows "done" and "100%". Task Manager shows no activity. But if you just let it sit there, it will finally fill the screen. Pretty amazing to me. I would much rather see a "progress bar" moving on the bottom like other screens. Actually, a progress bar would solve it, because the users are not in a big hurry anyway.
    I am using "openStream" and "readLine" for the files.
    Any opinions?
    import javax.swing.*;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class urlaa extends JApplet
    //zz  implements Runnable, ActionListener
          implements ActionListener
    // zz added
        private JLabel item;
        private JList itemList;
      int par;
      int errorflag = 0 ;
      int orgsize = 14900 ;
      String par1;
      String s;
      String e1;
      String e2;
      String e3;
      String w1;
      String w2;
      String w3;
      String w4;
      int i = 0;
      int len ;
      int size ;
      String stringsize ;
      URLConnection conn ;
      int i2 = 0 ;
      int k = 0;
      int current = 0;
      String s1 ;
      String s6 ;
      String s7 ;
      String s8 ;
      String printline ;
      String pageLink;
      String arr[]  = new String[150] ;
      String arr2[] = new String[150] ;
      String arr3[] = new String[150] ;
      int arr4[] = new int[150] ;
      String inputLine;
      Thread runner;
      public void init()
             String parameter = getParameter("par1");
             if (parameter != null)
                 par = Integer.parseInt(parameter);
             else
                 par = 99;
    // zz         Button goButton = new Button("Go");
    // zz         goButton.addActionListener(this);
    // zz         add(goButton);
    // zz   added
            this.item = new JLabel();
            this.addButton();
            Container container = this.getContentPane();
            this.itemList = this.getList();
            container.add(this.getPanel());
            URL u;
            InputStream wis = null;
            DataInputStream dis;
            int rcnt = 0;
            int rcn2 = 0;
           //    1)  read filelist.txt file
           //         and load into a table.
           //    2)  close the filelist.txt file
           //    3)  Use the tabled file names to
           //         read and see if the bio
           //         has been done
           //  1) Read filelist.txt and load table
            try
            u = new URL("http://www.classof1961.mysite.com/filelist.txt");
            catch (MalformedURLException e)
              errorflag = 1 ;  // set error flag to stop while loops
              e1 = ("FILELIST.TXT MalformedURLException: " + e.getMessage()) ;
            try
                u = new URL("http://www.classof1961.mysite.com/filelist.txt");
                wis = u.openStream();
            catch (IOException ioe)
              errorflag = 1 ;  // set error flag to stop while loops
              e1 = ("FILELIST.TXT IOException : " + ioe.getMessage()) ;
    //      does not work     size = wis.getContentLength() ;
                // Convert the inputStream to a buffered DatainputStream.
                dis = new DataInputStream(new BufferedInputStream(wis));
                // Read 1st record to set up while loop
                   try
                     s1 = dis.readLine() ;  // get 1st rcd
                   catch (IOException ioe)
                     errorflag = 1 ;  // set error flag to stop while loops
                     e3 = ("FILELIST.TXT IOException : " + ioe.getMessage()) ;
                   while (s1 !=  null)
                   {  // load file names loop
                   if (errorflag == 0)
                   {  // if errors
                    arr[i] = s1 ;
                    i++ ;
                    try
                    s1 = dis.readLine() ;
                    catch (IOException ioe)
                      errorflag = 1 ;  // set error flag to stop while loops
                      s1 = null ; // force end of loop
                      e3 = ("load table read failed" + ioe) ;
                    rcnt++ ;
                    if (rcnt > 100)  // test code
                    {                // test code
                      errorflag = 1;
                      s1 = null ;
                      e3 = "Load table is looping!!" ;
                   }  // end of error check loop
                   }  // end of table load loop
               int lasttableentry = i ;  //
                   // CLOSE the filelist.txt file
                   try
                    wis.close();
                   catch (IOException ioe)
                    errorflag = 1 ;  // set error flag to stop while loops
                    e3 = ("close of filelist.txt file failed" + ioe) ;
    //   End of filelist read and load and close
    //      ptr to whats new names in table arr
            i = 0 ;
    //      While more names in table,
    //        Connect and Open file
    //        Read file until 4th rcd (rel 3rd rcd)
    //          if rcd has date, then move it to table
    //          else
    //          bump to next file name
              w1 = arr[i] ;
              w2 = w1.substring(1, 4) ;   // ONLY USED FOR CHK FOR XXXX
    //    ______________  start of major loop  _____________
            boolean morenames = true ;
            while (morenames)
            {  // Name table loop
            if (errorflag == 0)
            {  //if no errors
              try
                u = new URL(w1);
                try
                  URLConnection conn ;
                  conn = u.openConnection();
                  size = conn.getContentLength();
                catch (IOException e)
                  errorflag = 4 ;
                  morenames = false ;
                  e1 = ("file size logic failed " + w1) ;
              catch (MalformedURLException e)
                    errorflag = 1 ;  // set error flag to stop while loops
                    morenames = false ;
                    e1 = ("next whats new url error : " + w1) ;
    // compile error                break ;
              try
                  u   = new URL(w1) ;
                  wis = u.openStream();
              catch (IOException e)
                errorflag = 1 ;  // set error flag to stop while loops
                morenames = false ;
                e2 = ("next whats new open error :  " + w1) ;
    //   compile error            break ;
    //            Convert the inputStream to a buffered DatainputStream.
                  dis = new DataInputStream(new BufferedInputStream(wis));
                if (errorflag == 0)
                {  //if no errors
                       try
    //  does not work                       String s2 = dis.readLine(3) ;
                         s1 = dis.readLine() ;
                         s1 = dis.readLine() ;
                         s1 = dis.readLine() ;
                         s1 = dis.readLine() ;
                       catch (IOException e)
                         errorflag = 1 ;  // set error flag to stop while loops
                         morenames = false ;
                         e2 = "whats new file MalformedURLException: " ;
                       // file is larger than original non-bio file size
                       if (size > orgsize)  //  if file size > original file size
                       String s2a = s1.substring(0, 5);
                       String s3 = "                       " ;
    //                 Only look at title records to get the name
                       if (s2a.equals("<titl"))
                          int k2 = 7 ;
                          int l = k2 + 1 ;
                            while (!s1.substring(k2, l).equals("<"))
                              k2++ ;
                              l++ ;
                          s3 = s1.substring(7, k2) ;
                       else
                          s3 = "               " ;
    //                 s3 now has blanks or the name
                       arr2[k] = w1 ;    // move name into arr2 (link to bio)
                       arr3[k] = s3 ;    // move name into arr3 (bio name)
                       arr4[k] = size ;  // move in file size
                       k++ ;
                       } // end of if length > 36
                } // end of chk for error flag zero (no errors)
                  //  now we have to close this whats new file
                   // CLOSE the current whats new file
                   try
                    wis.close();
                   catch (IOException ioe)
                    errorflag = 1 ;  // set error flag to stop while loops
                    morenames = false ;
                    e3 = ("close of the current whats new file failed" + ioe) ;
                  //  end of the close
              rcn2++ ;
              if (rcn2 > 100)  // test code
              {                // test code
                 errorflag = 2;
                 morenames = false ;
                 e3 = "Searching files is looping!!" ;
              i++ ;           // bump to next whats up name
              w1 = arr[i] ;   // load it into work string
              if (i > lasttableentry)
                morenames = false ;
              } // end of error checking loop
             else
                  morenames = false ;
            } // end major name table loop
                   // CLOSE the last whats new file
                   try
                    wis.close();
                   catch (IOException ioe)
                    errorflag = 1 ;  // set error flag to stop while loops
                    e3 = ("close of last whats new file failed" + ioe) ;
    // end of init
    //     _________________ other methods  ______________________
    // zz added
        private JList getList() {
            // Create a List
            JList tempList = new JList(arr3);
            tempList.setVisibleRowCount(3);
            // Enable single selection
            tempList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
            return tempList;
        private JButton addButton() {
            JButton button = new JButton("Select Item below and click here to go to the bio");
            button.addActionListener(this);
            return button;
        private JPanel getPanel() {
            // set layout to GridLayout 3 rows and 1 columns, no separations
            JPanel panel = new JPanel(new GridLayout(3,1,0,0));
            JScrollPane spane1 = new JScrollPane(this.itemList);
            panel.add(this.addButton());
            panel.add(spane1);
            panel.add(this.item);
    //       panel.add(new JLabel("Example List"));
            return panel;
    //   _______________  actionPerformed method  ____________________
         public void actionPerformed(ActionEvent evt)
           s8 = "actionPerformed";
    // zz added
            String command = evt.getActionCommand();
            // Get the selected value from the list and update the JLabel
            item.setText((String)itemList.getSelectedValue());
    //  try to redirect to selected url
      try
             int idx  = itemList.getSelectedIndex() ;
             String urlvalue = this.arr2[idx] ;
             URL u = new URL(urlvalue);
             this.getAppletContext().showDocument(u, "_self");
         catch(Exception e)
    }

    jagossage wrote:
    But if you just let it sit there, it will finally fill the screen. Pretty amazing to me. The onus is on you, the developer, to decide how to distract your users as they wait for your code to finish. Why should you expect something to do it for you?
    I would much rather see a "progress bar" moving on the bottom like other screens.Ah, I think I see where you're confused. The progress bar and applet loading subtitles, etc are Java's way of presenting the progress of loading the applet. Once it's fully loaded, though (which it is when your code starts running), it hands off control to you. It's in your hands at that point.

  • Very slow scrolling window thumbnails clips

    Very slow scrolling windows with thumbnail clips. The more files in the event, the worse it gets. It is very frustrating. Is in others it is the same? I have MacOookPro i7 early 2011, thunderbolt drives RAID0, 16GB memory, FCPX 10.0.7. After the hardware is decent.
    Give some feedback, thank you.
    P.S. I might add that this disadvantage are found from version 10.0.0.

    You might want to look at either booting from your install dvd (insert, restart and hold 'C' down) and running disk repair from Utilities. Alternatively, and I always suggest any Mac user should have at least one, a 3rd party disk utility like DiskWarrior (there are others) is extremely useful.

  • Address book very slow to show addresses

    When I start up address book, although the application opens up quickly the addresses take several minutes to appear in the window. I can't be completely sure but I think it may be related to upgrading to OS X 10.6 - I don't remember this being a problem some months back.
    Is there anything I can do to fix this problem.
    Thanks in advance
    - Vikas

    In addition to this problem, from time to time the Address Book will slip into "Beach-ball" mode and (not necessarily coincident because this is consistently a problem) access to the Contacts in Mobile me is also either very slow or simply unavailable!

  • My imac is from 8/07 and although i have ad no problems llately it is very slow often showing the colorwheel between tasks.  any ideas beides buy new one

    My imac os from 2007 and still works great.  Even got the new Lion  pgrade.  The machine has become quite slow and goes to color wheel between tasks.
    Any ways to help sort of purchasing a new one

    Is your data backed up from prior to the upgrade?
    Did you ensure all your applications are known to be compatible on this list:
    http://roaringapps.com/apps:table
    Is Time Machine running?
    Is Spotlight indexing?
    How big is the hard drive, and how much free space does it have?

  • NYC LTE very slow / not showing on Verizon iPhone 5

    Hi,
    I'm having lots of issues on Verizon...the main issue being that since launch, the iPhone 5 has been slow, and connection changes from LTE to 3G to edge. Some times the 3G stays active for days no matter where in NYC I go or if I reboot, turn cellular data off and on..now, I do notice that resetting a the network settings will magically bring LTE back on...keep in mind that in manhattan these speeds suck, in other boroughs the speeds are ok, 5-10 mb... I work and live around midtown so it is like still having a 3G phone. Resetting the network settings works for a day or hours, but always goes back to the same issue of no LTE and the fix is the reset.
    Now, I have seen many people saying the same on Verizon forums, and some are on android. I was traveling around last week for thanksgiving and the speeds was great always on, never slow....came back to NYC and as soon as I turned on the phone at the airport the thing I get is 3G.. Anyone know what could be causing the problem? This is a new phone since I actually had apple replace it before my trip, but the same issues reemerges. I have even tried resetting everything and set the phone as a new iPhone, but it still has these issues.
    At this point I don't know if this is a software bug, hardware or network issue..any help will be greatly appreciated.

    Yeah it truly is mind boggling how fast this phone is. Compared it to my friends Galaxy S3 this past weekend and it left it in the dust.
    Him and I are always putting our phones head to head as he prefers Samsung phones and I prefer the iPhone. Needless to say, everything looks better on the iPhone. The only edge the Samsung had was the screen size, but even that was taken with a grain of salt. Standing outside in the sun, the iPhone screen comes through a lot brighter while you have to literally strain to see what's on the S3's screen.

  • When entering text into a table letters are very slow to show up.

    When I enter text into a table, the text loads VERY slowly. What's that about?

    Problem 1: In Table A, when adding or updating data, I want to select data from fields in records based on primary key in other tables. Add and update data works. But my popup "X" list is way too long. I want the popup "X" when adding or
    updating record in Table A to only give me the choice of records from Table B that matches the data I entered in a previous field in Table A, not all the records from Table B.
    For this question, you can create SortTable screen to sort the data based on table A and table B. is this what you need?

  • TS3274 Since upgrade to latest version my screen is very slow to show on the screen . IT IS impossible to put in a password as it seems to time out out

    There is a ime delay with everything I type . THIS SINCE upgrade to  os7. Can anyone suggest why?

    If the above doesn't work, try a reset.
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • 4Th Generation Time Capsule Running Backup very Slow

    I am having a problem with my 4th generation time capsule as it is running very slow , it shows that i need to backup 151 Gb data and for the last 2 days the device backup only 150 mb, pls advise what is the problem? setup of the wireless network seems fine to me without any problem
    please help

    When you use ethernet, make sure your wireless is turned off in the computer.
    It can be worthwhile isolating the TC to the Computer so there is nothing else happening.
    Also for Mavericks ensure you have ipv6 set correctly to link-local.
    A 100GB backup certainly should not take 20hours..
    Although the 2008 (gen1 TC is much slower than later versions).
    A first backup of the computer must deal with loads and loads of little files, as a warning can go slow.
    A different backup software will be just the same.. it is the speed over network and handling small files that is the issue. Once that first backup is done the later incrementals should not be a problem though.

  • Initializing laptop HD via Firewire very slow

    Hi all,
    I'm trying to initialize a new 80Gb laptop HD before installing a new copy of Panther on it for installation into a Mac mini. I'm doing the initialization, via a firewire cable and Macally enclosure, to a G4 MDD running Panther 10.3.9 using DiskUtility.
    The initialization is very slow, top showing DiskUtility using around 1% of the CPU most of the time. The initialization has been running for 24+ hours and it's still going. The progress bar on DiskUtility has barely moved since it started.
    Is the slowness a sign that my firewire port on the G4 motherboard is having a problem?
    And can I safely just quit DiskUtility and put the HD back in the mini and do the initialization and installation via the Panther install discs directly on the Mac mini? Or am I stuck with waiting until it ends, since otherwise I'll screw up the partition map on the HD or something?
    Any ideas would be greatly appreciated!
    Ed

    Hi Ed. Be sure in your disk utility the option "safety(s)" is/are not checked. This way the app writes zero
    on all your hd blocks and, more, if 7 pass or 35 pass is checked the time will be veeeery long to finish.
    Just initialize your disk the standard way, without any other option. You can also check your device integrity before init with the surface scan, this will take up more time but will ensure your device isn't defective. I've formatted many hd through FW cable to external enclosure, succesfully.
    regards
    Rob

  • Very Slow internet connection with WRT150-N Wireless Router

    I have a WRT150-N wireless router hooked up downstairs to the modem and I am upstairs right now with internet that is very slow, it shows it is 18 megabytes/second and the connection says poor (i have a wireless G card in this computer).  I have another computer that is about 10 feet away from the router with a wireless N card and it says that the connection is 160 megabytes/second, but again it is running very very slow.  The third computer is back upstairs by this one and it has a Wireless N USB adapter and is running about 170 megabytes per second.  They are all about the same speed in opening websites but again are very slow to do so.  Any ideas on what is going on or how I can get it faster?

    First of all, the speeds you are quoting all sound like Mbps (megabits per second) connection speeds, not data throughput speeds.  You really need to measure your actual download speed to tell what is actually going on with your system.
    Use speedtest.net and test your system.  Turn off all other computers except the test computer.  Test under the following conditions:
    1)  connect one computer, by wire, directly to your modem
    2)  connect the same computer, by wire, directly to your router
    3)  connect the same computer wireless to your router
    4)  connect your other computers, wirelessly to the router, one at a time
    Also, state the speed that you are paying your ISP for.
    Report your download and upload speeds for all of the above tests.
    Note that the speed that you are paying for should be about the same as your results from test 1 and 2 above.
    After you have done these tests, it will be much easier to tell where the problem is. 

  • Itunes 10.6 is very slow and rarely plays songs. It will either not show it playing or show it stuck at 0:00

    Hey, i have had this problem for a while now and it finally got on my nerves. Itunes has been very slow for me lately and now it rarely even plays a song when i want it too. It either wont register that i clicked the song by freezing up or it will show that the song is stuck at 0:00. Sometimes it does play the song, but i havent figured out why it does at random times and what im doing differently when it does. I have itunes 10.6 on windows 7 64 bit. Any help? That would be great

    I have this same issue but on Snow Leopard.  Please help!

  • Suddenly, Firefox is very slow and lethargic and keeps showing an error message on the side of the page. Why?

    Yesterday, I was working on the website, Shutterfly. Suddenly, there was an error message that it couldn't find a certain page. Now, Firefox continues to be very slow... and the error message keeps showing up on the search page, sometimes just parts of the message. I can still search but it is painfully slow and loads page partially and strangely... sometimes not full graphics, etc.

    Or you can try what lots of other people have found, and thats that the base connector is dirty and the contacts are shorted by some debris.
    The Apple store guys are good at cleaning them out - if you do it yourself, do not use any liquids at all.

  • My mac startup is very slow, it goes white for long before showing users, how do i cure this illness?

    my mac startup is very slow, it goes white for long before showing user account, how do i cure this illness?

    1) System Preferences > Startup Disk ...
    to set your correct Stratup Disk  AND
    2) Run one pass of Disk Utility "Repair Disk" from another source such as by booting to Recovery_HD OR
    Restart in Safe Mode (which does the "Repair Disk" as it starts up).

Maybe you are looking for

  • Unable to capture packets on ASA(ASDM)

    Hi all, We have site to site VPN connection to one of our client. From which we both are accessing our applications and other resources. Now client needs to acccess two of our internal server. So we have created Static NAT in our ASA. For one server

  • [Solved] TV overscanning - Now w/o Audio

    I've recently installed arch and am fairly inexperienced with linux in general. I'm attempting to set up arch to work with my TV, however, it seems to be overscanning, and therefore cropping about an inch from each side of the screen. I've been scowe

  • Server 2008 R2 (ERROR_SXS_ASSEMBLY_MISSING)

    I am trying to install SP1 on a Windows Server 2008 R2 and receive the following error: Here is an excerpt from CBS.txt: 2014-07-15 07:52:57, Info                  CBS    Exec: Resolving Package: Server-Help-Package.ServerDatacenter~31bf3856ad364e35~

  • When making a new folder in the "Page Bookmarked" pop-up, it doesn't let me name the folder.

    Usually, when you bookmark a page, when choosing the drop-down menu next to the "folder" area, you can press "New Folder", and it create a new folder and let you name it. Now, it often does nothing when I press the button, and when it does make a new

  • IWork's installation CD acting up

    I have a Macbook from 2009 when they made them with the full aluminum body, I had to replace my HD since it crashed a couple of months ago and hadn't set up my apps and previously installed programs. I am trying to reinstall my iWork 09 but the compu