Problems with a large video library - any ideas on speeding up opening?

One of the things I really like about iMovie is that it is the best tool I've found so far for managing my large and rapidly growing collection of home video. The raw clips are all nicely organised by event and date, and where I have taken the time to produce an edited movie, this is also easily accessible by name and date.
My problem is that with getting on for 500GB of media in my Events Folder, opening iMovie can now be a 10 minute task, as it seems to need to Optimize and Process the Events even if nothing new has been added since the last time it was opened. There must be some sort of cache though, since if you wait for it to finish processing the events, closing and immediately reopening iMovie happens very quickly.
I assume the cache is getting flushed regularly to free up space. Does anyone know if there is a way to stop this happening, or offer another explanation/work around?

Assuming there is nothing wrong with your computer, maybe iMovie just has too much to open as you say.
If you are done using the majority if your events in your projects, you could move them to an external HD disk. Then if that disk is not on/connected at the time you open up iMovie it will not have to go through them to open up. To do this, do an iMovie Help Search using "move events to external" and find the topic "Copying or moving video from your event library to and external hard disk". The events will be there anytime you need them and will show up in iMovie when that HD disk is hooked up and on and iMovie open. You dont have to move them all, just the large ones you are not using. You have the option of moving or copying them to the HD, you want to move them. Moving them deletes then from your main HD so you may want to be backed up first... This way iMove (With external HD not connected) only now has to open up a lot less video.
The other possibility is to just back up all events pre-thinning, then thin the events on your HD, by either choosing " Move rejected clips to trash" or by "Space saver". if you go to this old post i wrote a description of the difference between the two options, they both work but are different.
http://discussions.apple.com/thread.jspa?messageID=11164511&#11164511
roger

Similar Messages

  • Problem with my blog's comments, any idea ?

    hi !
    I need your help. I've created a blog on iWeb one month ago, with 70Mo free for 2 months. People could add comments on the articles and pictures since 1 week ago. But now, when someone clicks on "add a comment", the popup sends us on "http://www.apple.com/mobileme/migrating/".
    Is it because I've a free account (number of comments limited ?) or have you got an other idea about this problem ?
    Thanks a lot for your answer,
    Oliwood

    I don't think this is because you've got a free period. I've been using iWeb for quite a while and only just recently I discovered a similar problem with comments on a blog page.
    I made a bunch of changes and edits to my site and kept getting error on publishing messages. The problem was isolated to an "add Comments" selection on the blog page. When that choice is UNCHECKED the page publishes fine. When checked, I receive an error on publishing message.
    Anyone have an idea how this can be resolved?

  • Having problems with National Lottery website. Any idea why?

    Tried to get onto National Lottery website today and message saying website not responding. Checked with friends and they are saying all ok for them. Rang Lottery HQ and they said no problems with their website. Advised me to delete all history and cookies and download Internet Explorer. Is there any reason why I should no be able to use Firefox?

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • When I open Ical it doesn't work at all. It looks like there is a problem with this particular software. Any ideas?

    Hi there,
    I have a problem with ical. It doesn't seem to work AT ALL when I open the program.
    When I search for updates everything is up to date, so I imagine Ical should be installed again..(?)
    Not sure how to do this.
    Many thnaks,
    Caroline

    Final Cut Express was discontinued about 18 months ago, before the release of Lion (10.7).  It is no longer a supported product and was never supported on Lion, nor on Mountain Lion.
    While some FCE users have had success running FCE on Lion, many have reported problems including problems with chroma keying.   I do not recall any solution to the chroma keying problem, but you might try searching this Forum to see what others have discovered or tried.
    Final Cut Pro X is the app supported on Lion & Mountain Lion, and the future direction Apple has taken.  Since your computer lab has already moved to Lion (10.7.5) and presumably will move to Mountain Lion in the future, you should begin the process of moving to Final Cut Pro X.  I appreciate there are implications for cost, training, inconvenience and re-doing lesson plans.  But technology moves on and at some point we need to move with it too.

  • My iPad does not download my pictures as programmed. No problem with downloading to iPod. Any ideas?

    My iPad does not load my pictures, I have not problem with any other downloads or with downloading my pictures to my iPad.

    Download them from where and programmed from where? You can't sync them from iTunes? They will not transfer from the CCK? Photo Stream isn't working?
    Maybe you should provide a little more information????

  • TS1424 My account will not accept any payment information. It says there was a problem with a previous purchase ! Any idea what I can do????

    iTunes account says. "Problem with precise purchase".  Will not accept any payment method!  Any help?????

    it means you have a past balance due to apple
    see http://support.apple.com/kb/HT2727?viewlocale=en_US
    redeem a gift card in itunes store for more than the balance you owe. Then you can enter your cc info
    Peace, Clyde

  • Problem with creating "updatable" view. Any ideas?

    Hello to nice people!
    I'm trying to create plain, simple updatable view such as:
    CREATE OR REPLACE VIEW v_admin_maint
    (from_addrs,mail_invoice_addrs,auth_off,location_cd) AS SELECT
    A.from_addrs, A.mail_invoice_addrs, A.auth_off,
    A.location_cd FROM admin_maint A, sysusers B WHERE A.location_cd
    = B.location_cd and B.user_id = USER;
    TABLE admin_maint
    from_addrs,
    mail_invoice_addrs,
    auth_off,
    location_cd (PRIMARY KEY)
    TABLE sysusers
    USER_ID (PRIMARY KEY)
    FIRST_NAME
    LAST_NAME
    LOCATION_CD
    View works great as view-only, but I got an error on update
    statement "ORA-01779: cannot modify a column which maps to a non
    key-preserved table".
    UPDATE v_admin_maint SET from_addrs = 'test' where location_cd
    = 'HOME';
    TABLE admin_maint does have PK and this column included into
    VIEW.
    Any ideas? Please advice.

    You need to create a unique index on the location_cd column of
    the sysusers table, then re-create your view:
    SQL> ALTER TABLE sysusers
      2  ADD CONSTRAINT sysusers_location_cd_uk
      3  UNIQUE (location_cd)
      4  /
    Table altered.
    SQL> CREATE OR REPLACE VIEW v_admin_maint
      2    (from_addrs,
      3     mail_invoice_addrs,
      4     auth_off,
      5     location_cd)
      6  AS
      7  SELECT A.from_addrs,
      8         A.mail_invoice_addrs,
      9         A.auth_off,
    10         A.location_cd
    11  FROM   admin_maint A,
    12         sysusers B
    13  WHERE  A.location_cd = B.location_cd
    14  and    B.user_id = USER
    15  /
    View created.
    SQL> SELECT      column_name,
      2              updatable
      3  FROM        user_updatable_columns
      4  WHERE       table_name = 'V_ADMIN_MAINT'
      5  /
    COLUMN_NAME                    UPD
    FROM_ADDRS                     YES
    MAIL_INVOICE_ADDRS             YES
    AUTH_OFF                       YES
    LOCATION_CD                    YES
    SQL> UPDATE v_admin_maint
      2  SET    from_addrs = 'test'
      3  where  location_cd = 'HOME'
      4  /
    1 row updated.

  • I am having problems with my wake button responding, any ideas?

    Having problems with iPad 3 wake button responding.  I have reset iPad; but no help.

    If you mean the button on the front (home button) then it is probably a hardware fault, I would recommend taking it back to the apple store. But for now, I have a work around, go to - Settings, General, Scroll down to accessibility and turning on 'AssistiveTouch' this then gives you a temporary work around.
    If you mean the top button (wake/sleep) then I'm afraid there is nothing that can be done other than getting it repaired, again take it to the Apple Store.
    Hope this helps

  • When I share a video with fcpx and it goes to Quicktime, the last few seconds goes mute. I checked the clip and sent that the same route and all is fine. It is only when I send the whole 3gb video. Any ideas?

    When I share a video with fcpx and it goes to Quicktime, the last few seconds goes mute. I checked the clip and sent that the same route and all is fine. It is only when I send the whole 3gb video. Any ideas?

    paul71054 wrote:
    ... Any ideas?
    add a few seconds black to your project.
    Try again.
    could be some really weird codec problem, with 'cut' GOPs', .. somethin'...

  • My screen message is no video input any ideas as to fix this problem

    I have had my computer in storage for two years Compac Presario just hooked it up and the screen message is no video input any ideas as to fix this problem

    What is the model of your Compaq Pressario?
    Check your cabling for any defects.
    Remove your video card and replace it.  You might want to do the same thing with the RAM
    Please mark my post as SOLVED if it has resolved your problem. It helps others with similar situations.

  • I updated my Mac Book Pro to Yosemite, now to says it's not compatible with my Cannon copier. Any idea how to fix this problem?

    I updated my Mac Book Pro to Yosemite, now it says it's not compatible with my Cannon copier. Any ideas how to fix this problem so I can use my Cannon copier again?  Thanks for any help!

    If MF4150 is correct...
    http://www.usa.canon.com/cusa/home
    search MF4150
    click >Drivers & Software
    Verify or choose Yosemite 10.10 - then click the [+]
    Again verify Yosemite > click agree > click [DOWNLOAD]
    The rest should be self-explanatory
    ÇÇÇ

  • HT1386 Sry for disturbing, but i would to ask that how to overcome the problem of synchronising ? Itune showing me that the sync session is failed to start with my Ipad mini. Any ideas about what is going on ?

    Sry for disturbing, but i would to ask that how to overcome the problem of synchronising ? Itune showing me that the sync session is failed to start with my Ipad mini. Any ideas about what is going on ?

    What are you trying to sync?
    I see you are on ios 7.
    I also had upgraded my iPad Mini to ios 7 & then the 1st time I tried to open a Numbers file that was set up to sync w my MacBookPro, I got a warning that I would not be able to sync it any more w my Mac until I upgraded to Mavericks.
    So if you are trying to sync Numbers, Pages or Keynote files between your iPad mini in ios 7 and a Mac that hasn't been upgraded to Mavericks that could be the problem.
    I was very shocked to get that message since I bought Numbers on the iPad so that I could have a particular file on both devices & keep them synced. I had no clue when I upgraded to ios 7 on the iPad Mini that it would make it so the files in the iWorks apps woudln't sync any more.
    So I finally decided to go ahead & upgrade to Mavericks after carefully preparing & updating other software so that it would work w Mavericks. But I got error messages so haven't even been able to download Mavericks & now having 2nd thoughts about doing so.
    iPad mini ios 7
    MacBookPro Mid 2012 Mountain Lion
    iphone 4S ios 6

  • When importing a Quicktime file into iMovie the audio is inconsistently synchronised with the video. Any ideas?

    I record using Quicktime and the built in webcam on my MacBook Pro. When importing the file to iMovie the audio is inconsistent in its syncronisation with the video. Any ideas?

    This is probably caused by the internal webcam on Apple devices being optimized for FaceTime rather than for movie making. In FaceTime, the goal is to transmit the information using a little bandwidth as possible, so the video will be recorded at a variable frame rate. The frame rate will get low if you are still, and will speed up if there is a lot of motion.
    To fix, I would suggest that you use a free app like MPEG Streamclip. Drag the clip into MPEG Streamclip and export it out at a constant framerate.
    If it is an HD movie, I suggest exporting it from MPEG Streamclip using FILE/EXPORT TO QUICKTIME. Choose Apple Intermediate Codec as your video compression. For sound, choose uncompressed 48khz. That should work, but I can't test it right now. If MPEG Streamclip does not work for you, let me know and I can recommend another free tool.

  • HT201272 I spend a considerable amount of time in Asia and am finding the ability to download previous purchases now shown on my iCloud account.  Music appears fine and most movies are OK but I have problems with all music videos included with album purch

    I am finding the ability to download previous purchases now shown on my iCloud account to be difficult.  Music appears fine and most movies are OK but I have problems with all music videos included with album purchases.  Any ideas?

    Phillip_dc wrote:
    Firstly, I purchased my first iPhone a few years ago, since then there have been a lot of apps released, a lot which I downloaded for free, tried and deleted from both my phone and my iTune 'Apps' Panel. What bothers me is when I do get a new iOS device, iPad and/or iPhone 5, and I don't want to just copy the back-up of my current iOS device to the new one, then to get the apps I want I will have to scroll through countless useless 'trash' applications in my purchase history to 'cloud download' the ones I want.
    Just sync the apps you want from your computer. You don't need to redownload them directly on the iPhone Purchased list.
    Will Apple be employing such a feature, a 'permanently delete/un-purchase' feature?
    Dunno.
    Send suggestions here -> http://www.apple.com/feedback/

  • Problem with RTPExport output video files

    Hi, I have a problem with RTPExport output video files. One side streams H263/RTP(AVTransmit2.java) and other write this steam to a file by RTPExport.java. When network conditions are ideal, output video file has same fps and same number of frames like original file. Problem occures, when theres packet lost in network, then output file has different fps,and also has less frames like original video(because it didnt write missing frames to file, and thats why it get shorter). Pls how can I achieve output file that will have the same fps like original one? How to write to file an identical copy of what I can see while receiveing video with AVReceive2.java? Its there a way to modifi rtpexport or avreceiver to do this? Thanks a lot!

    Trubka wrote:
    When network conditions are ideal, output video file has same fps and same number of frames like original file. Problem occures, when theres packet lost in network, then output file has different fps,and also has less frames like original video(because it didnt write missing frames to file, and thats why it get shorter). Okay, first off, the second file is smaller on purpose. RTP intentionally drops packets that are old/out of order in order to make sure real-time video stays as close to real time as it can. This is by design, so there's really nothing that can be done about it.
    How to write to file an identical copy of what I can see while receiveing video with AVReceive2.java? Technically speaking, what you're getting in the RTPExport is exactly what you got on the receiving end. Any frames that are dropped during transmission will not be seen by the receiver, nor saved by the receiver.
    Pls how can I achieve output file that will have the same fps like original one? I'm not 100% sure that you can, but, you can give the following idea a try. I make no guarentees that it'll work, but it should work for you...
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/RTPConnector.html]
    That example is an example of a "custom transport layer" for RTP connections. Essentially, it's some code that's handed the RTP packets on the transmission end, and it's expected to deliver those RTP packets on the other end. And it doesn't care about how they get from A to B, only that they do.
    If you were to replace the UDP socket in that example with a TCP socket, you would be guarenteed not to drop packets due to network reasons. Every RTP packet you were handed by the transmitter, you would then hand to the receiver. There is no guarentee that none of the packets would be cast away as "old" by the RTP protocol itself, but there's also no guarentee any of them would be. It's a crap-shoot at best, but it's certainly worth a try.

Maybe you are looking for

  • Failure mounting or repairing images (DMGs) after updating to 10.4.9

    I used Disk Utility to create a compressed image of both my and a friend's "The Frozen Throne" (Warcraft 3 expansion, by Blizzard) cd. Although both CDs mount properly when inserted into my drive, the images created from them by Disk Utility (both be

  • Boot Camp:  Vista side won't start up

    When I click on vista on the boot camp menu, it loads and all, but it goes to the black error screen that says like "start normally" or "start with command prompt" or "start in safe mode" etc etc, and no matter what I click on, it just won't load and

  • Podcasts in the portal?

    Has anyone posted podcasts on the OWI portal? What methodology was used?

  • Excel Macro to click on publish button of Master Data Services Add-in

    I am creating an excel macro to perform extra validation and defaults whilst the user is editing the MDS entity. It will be added as a workbook add-in. At the end of the macro I would like to be able to launch publish. The MDS addin is a ribbon. Does

  • JDeveloper 10.1.3 Hangs for

    I am facing issue with jdeveloper 10.1.3 wherein it just hangs eating 99% of CPU and only way out is to kill it using Task Manager. Steps to reproduce the problem: o Using Preferences -> Code Editor -> Font Change the editor font to any font other th