A tip how to make iMovie '08 rescan the iPhoto library for video clips

I could not figure out how to easily force iMovie '08 to rescan all iPhoto library video clips. My problem was that my Casio S880 videos had the audio format DVI ADPCM which is not supported by iMovie '08. I made a script which transcoded all my iPhoto library videos' audio track to AAC. But after this was done, the iMovie didn't still show them in iPhoto videos. iMovie checks only for NEW entries in iPhoto Library after last scan.
One simple workaround is to duplicate the transcoded video in iPhoto and then delete the original. But if you have a lot of clips here is a better way to do this:
NOTE: This trick does not reimport already imported clips. This trick is useful only if you want to force iMovie '08 to recheck old iPhoto movie clips if they are now valid for iMovie '08 or not.
1. Close iMovie '08
2. Open file HOME/Library/Preferences/com.apple.iMovie7.plist with the Property List Editor application (I think the application is part of Apple Developer Tools, I'm not sure if included in default installation). You may want to take a backup of the property file before opening it!
3. Find "lastiPhotoXMLDate" property and change the date value to be some older date, for example if you want to scan all files just change the year part to 1980 or similar.
4. Save the property file
5. Open iMovie '08, it should now check all iPhoto movie clips again if they are valid for iMovie '08.
The same thing can be achieved by just deleting the HOME/Library/Preferences/com.apple.iMovie7.plist file, but then you lose all your other settings.

I apologize for my confusion on your question.  I find that depending on the principal of each photo and my target audience to determine the time frame for each photo.  It seems most people get impatient with viewing one photo for more than 1-2 seconds if the photo is not complex.
If there are several things that interests the viewers in any one image, they want to look at it a second or two longer.  If the movie of images is a training aid, the images may need to be more than 3 seconds.  For intro's, or a trailer for a training movie, no longer than 1-2 seconds.
That was a long answer to say, generally speaking, I find 3 seconds to be an average time length.

Similar Messages

  • How do I put photos in the iPhoto Library onto my external hard drive?

    I used an old iMac for years and I would go into the hard drive in the Originals folder and drag each folder onto the external hard drive. That way I could easily find the different shooting sessions. Now with my new Mac I find an iPhoto Library folder but none of the pictures are there. In asking other questions over the last 6 weeks I've learned that if you click certain keys on the keyboard you can bring up the folders to view. Am I supposed to do this or is it asking for trouble? What is the best way to get my individual folders in iPhoto onto my external hard drive? Thanks so much.

    Deborah
    used an old iMac for years and I would go into the hard drive in the Originals folder and drag each folder onto the external hard drive
    *It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss*
    That way I could easily find the different shooting sessions.
    The Events feature will do that for you now in the iPhoto Window.
    There are many, many ways to access your files in iPhoto:
    For 10.5 users: You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto. With 10.5 you can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    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.
    Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *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.
    3. *Show File*: 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.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    Regards
    TD

  • How to retrieve photos directly from the iPhoto library?

    I have over 18 GB and rising of photos in my iPhoto library. Suppose I had to change to a Windows machine or for some other reason I could not access my photos via iPhoto. Fanciful I know, but I am not so much concerned with the probability of something going wrong but with the calamity that would result if something did go wrong. I note that some years ago Microsoft changed the file structure of their Word files from a proprietary one to an open access one to allow easy access to the text. So how could my photos be retrieved directly from the iPhoto library?
    Perhaps the answer is to send the library to a tech firm like the ones that retrieve data from damaged hard drives and they could pick off the photos and return them as a set of image files in a folder. But is it actually possible for anyone to do that?

    If, at some time in the future, you want to get all of your original image files onto an external HD in folders representing the Events in your iPhoto Library here are the simple steps to follow:
    1  - select all of the Events in your library.
    2 - use the File ➙ Export ➙ File Export menu option and setup the export as shown in this screenshot:
    3 - click on the Export button, select the destination where you want to save these folders and continue.

  • How to make a subscription use the default value for a parameter

    Hi everyone,
    I need to use the CreateSubscription method and have this new subscription use a default value for certain parameter. How can I do this?

    Hi Marianne,
    I have to create the subscription programatically, which is different from what you mention. To further clarify my challenge:
    I have three parameters in a report: date-interval (string), start-date (date), end-date (date). If the user selects for example "last week" as the date-interval, the DEFAULT values for the other two are as follows:
    Code Snippet
    start-date=DateSerial(Year(Today),Month(Today),Day(Today)-Weekday(Today)-6)
    end-date=DateSerial(Year(Today),Month(Today),Day(Today)-Weekday(Today)-1)
    The user can then select intervals like "today", "yestarday", "this month" etc, and the other two parameters are calculated based on that date-interval parameter. Now, If I programatically create a subscription to a report that contains these three parameters and set a value of "last week" for the date-interval parameter, the subscription stores the fixed days (say september 10 to september 16) producing a report of the same week every time the subscription is run and not updating the correct interval to LAST-WEEK!. What should I put as the value for start-date and end-date when I create the subscription to have these two params get the DEFAULT calculated value based on the third param date-interval?
    Hope to have been more clear now.

  • How to make Adobe Flash Player the default player for .flv, .f4v files?

    I have currently installed from Adobe the following applications:
    Adobe Bridge CS6 (64bit)
    Adobe Bridge CS6
    Adobe Dreamweaver CS6
    Adobe Encore CS6
    Adobe ExtendScript Toolkit CS6
    Adobe Extension Manager CS6
    Adobe Fireworks CS6
    Adobe Flash Professional CS6
    Adobe Illustrator CS6 (64bit)
    Adobe InDesign CS6
    Adobe Media Encoder CS6
    Adobe Photoshop CS6 (64bit)
    Adobe Prelude CS6
    Adobe Premiere Pro CS6
    Adobe SpeedGrade CS6
    Adobe Flash Builder is not installed.
    Adobe Premiere After Effects is not installed.
    I've just downloaded Adobe Flash Player 13, but .flv files and .f4v files are not played by Adobe Flash Player. I've tried to make it default player but i didn't release which file .exe to browse for (by right-clicking and choosing Open with > Choose default program...).

    There's a Flash Player Projector (standalone) in the Flash Professional CS6/Players folder, but it's usually outdated.
    When browsing to an app to use from the Properties window, go there, but... download this one: Windows Flash Player 13 Projector  and replace the Flash Player that's in that folder.
    If you're looking to test Flash files you've authored, then you'll need the Projector, but if you're just looking for a good player for FLV and F4V, then you should use VLC Media Player. http://www.videolan.org/

  • How do you import photos from the iPhoto library albums on the Mac to lightroom 5---i hit import but have no idea where to find iPhoto albums

    how do you import photos from iPhoto albums on the mac to lightroom 5

    Have you used the built-in migration plug-in? I'm not sure how LR handles iPhoto albums or events. there have been several reports indicating varying levels of success or otherwise, with import.
    See my comments on this similar thread which also has a link to users comments on the LR journal blog.
    https://forums.adobe.com/thread/1678249

  • How can I save the iPhoto library ( ie all current photos) to another media / HD and maintaing the access to it

    I am struggling with the export features of iPhoto:
    - That is for the mac, (but also for iOs7 on the iPad would be interesting)
    1/ how to generate a backup ( from the iPhoto library) -
    - just rename it and then copy it to another device / HD ?
    2/ what is the recommended procedure, to have several Photo - Collections, ( iPhoto libraries)
    and then to switch between them.
    Thx in advance

    iPhoto for Mac
    Back up:
    Most Simple Back Up:
    Drag the iPhoto Library from your Pictures Folder to another Disk. This will make a copy on that disk.
    Slightly more complex: Use an app that will do incremental back ups. This is a very good way to work. The first time you run the back up the app will make a complete copy of the Library. Thereafter it will update the back up with the changes you have made. That makes subsequent back ups much faster. Many of these apps also have scheduling capabilities: So set it up and it will do the back up automatically.
    Example of such apps: Chronosync - but there are many others. Search on MacUpdate or the App Store
    Switching between Libraries:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Choose Library'
    or
    File Menu -> Switch to Library
    or
    Double click on your preferred Library.
    There is no recommendation to have multiple libraries. They're inconvenient.
    iPhoto for iOS:
    The iPhoto for iOS forum is here
    https://discussions.apple.com/community/app_store/iphoto_for_ios
    Regards
    TD

  • HT5037 How do I use the iPhoto Library Upgrader? I've downloaded it, now what??

    I have just downloaded the iPhoto Library Upgrader how do I use it to upgrade my Photo Library?

    Just open the app and follow the steps. It should look for your library and upgrade it. Make a backup of the iPhoto library before using the application

  • How to make imovie export a sharper video

    how to make imovie export a sharper video

    set Firefox as your default browser ..start button >default programs >set your default programs >Firefox >set this program as default

  • How to make iMovie to read ADVC-110???

    I'm struggling how to make iMovie to recognize my Canopus ADVC-110 so I can transfer my VHS tapes to iMovie..
    Pleease help

    Hi s
    < When I open up iMovie HD - which video format do I use? >
    • DV
    • Go down under the viewer window and You can select Camera or a pare of siccors.
    Camera should have a black triangle and let You select iSight or ADVC. If not it doesn't detect the
    ADVC
    • Most probably it is. 6-pin end is about double the size and is rectangular eccept on short end that
    are curved to prevent wrong turning
    4-pin end is smaller and has an indent on one of it's longer sides for same reason.
    If it is not dectected on either of Your Macs it indicates a problem with either the ADVC or the FW-Cable.
    • The Cable is far more often the problem. Try to borrow another one and test.
    HERE Comes my long long list. Use it with care - not all apply to Your situation.
    I would print-out and cheque off those that are usably. No guarantee at all.
    Capture/Import problems:
    a) File-Vault is on - turn it off
    b) don’t Daisy chain camcorder - external hard disk - Mac
    (except for some Canon-Cameras)
    c) Slow hard disk (fragmented: repair permissions, repair hard disk, use a faster hard disk)
    d) Something is occupying the CPU/System, like other programs, Internet etc.
    e) Bad RAM-chips
    f) drop outs on the miniDV-tape - make a camera to camera copy on a tape which You have previous recorded with a time code (dummy recording).
    g) FW-wire cable OK?
    h) Break in the time-code on the miniDV tape (make a camera to camera copy on a tape which is prerecorded with nothing/anything so that the tape has a time-code from beginning to the end)
    i) defective camera TRY IT ON ANOTHER MAC !
    j) remove bookmarks in iMovie project
    k) Do You have desktop pictures or screen-savers active? Try turning them off.
    l) Updating - OS has to be a clean install - not an update eg from X.3.x to X.4.x (no good)
      OS X.4.0-2 needs a clean install to work (I use X.3.9)
    m) Updating QT and/or other updates (to 7 needs v6 to be cleaned out first)
      QT v.7 needs a clean install to work (I use 6.5.2)
    n) Have you tried the crazy fix:
    Open GarageBand, play a few notes, close it and reopen iMovie. The camera should import fine now. (Sue/SDillini)
    o) NEW (from Sue/SDillini):
    Trash the Font Collections Folder.
    These files are found:
    /YourUserName/Library/FontCollections folder.
    Drag the folder to the trash and launch iMovie. iMovie will create a new FontCollections folder containing the files it needs when it next opens.
    p) or thrashing the com.apple.imovie.plist file (Rodney Brown2)
    q) - Other programs interfering like Flip4Mac
    r) - Third party or old plug-ins
    May be You find some help in my list:
    Mac:
    • hardware
    ◊ Slow hard disk (fragmented: repair permissions, repair hard disk, use a faster hard disk)
    ◊ I wonder how full your Mac's hard disc is. (David Babsky) A near full hard disk prevents Import/Capture.
    10% free is recommended + space for Import/Capture + work space (about 4 to
    5 times the amount needed for Capture) eg on a 200Gb hard disk You need 20Gb + (one hour tape)
    13Gb + 50Gb = about 80 to 90Gb free space.
    ◊ Disconnect all other ext devices (FW and USB) exept Camera (and keyboard + mouse) and try again
    ◊ Rebuild Desktop (Tech-tool or fingersetting during start-up) (System up to 9)
    ◊ Reset PRAM (Tech-tool or keyboard finger settings alt-cmd-P-R ??)
    ◊ Reset PMU ( Restting the PMU...is the the alt-ctrl-shift and powerbutton shortcut? ) (Sue)
    PMU: http://docs.info.apple.com/article.html?artnum=86760
    PMU/SMU are essentially the same in the PM G5.
    ◊ Reset SMU
    SMU: http://docs.info.apple.com/article.html?artnum=300341
    ◊ Bad RAM-chips
    ◊ disconnect Mac from powerline (not just switch off, really plug out) for a few minutes to reset FW ports
    • software
    ◊ File-Vault is on - turn it off
    ◊ Something is occupying the CPU/System, like other programs, Internet etc.
    ◊ Do You have desktop pictures or screen or energy-savers active? Try turning them off.
    ◊ Updating - OS has to be a clean install - not an update eg from X.3.x to X.4.x (no good) OS X.4.0-5 needs a clean install to work (I use X.3.9)
    ◊ Updating QT and/or other updates (to 7 needs v6 to be cleaned out first) QT v.7.0.0-4 needs a clean install to work (I use 6.5.2)
    ◊ Have you tried the crazy fix: Open GarageBand, play a few notes, close it and reopen iMovie. The camera should import fine now. Sue/SDillini
    ◊ Running iDVD at the same time as iMovie can cause problems: (Lennart Thelander)
    ◊ If You also have installed FinalCut Express/pro there are possibly problems with this
    ◊ Other programs that interferes like Flip4Mac
    ◊ Codecs added to QuickTime
    ◊ Old plug-ins to iMovie or third party alike
    iMovie:
    ◊ remove bookmarks in iMovie project
    ◊ Trash: com.apple.iMovie.plist and com.apple.iMovie3.plist : files (Xinram)
    Connection:
    ◊ don’t Daisy chain Camcorder <--> external hard disk <--> Mac
    ◊ FW-wire cable, is it OK?
    ◊ USB/USB2 is NO GO !
    ◊ Cheque FW connection at Camera end. OK? (Adam Smith1)
    ◊ Cheque FW connection at Mac end. OK?
    Camera:
    ◊ The Camera is set to VTR ? (not as when You ”film” record with it)
    ◊ You may be need to go to the Camera menu and select digital out.
    ◊ defective camera TRY IT ON ANOTHER MAC ! (if the A/D chip in the camera is harmed then it will say in iMovie that the camera is connected and You can forward resp. backward the tape but there will be no picture or sound just the blue screen).
    ◊ connect camera to power-line, not battery-only....(Karsten Schlüter)
    ◊ Canons don't allow daisychaining on firewire, make it "only device" on port (Karsten Schlüter)
    ◊ Cheque the menu on Your Camera so that it communicates with the FW digitally to Your Mac
    ◊ Date and Time is correct on Your Camera ?
    Tape:
    ◊ Drop outs on the miniDV-tape - make a camera to camera copy on a tape which You have previous recorded with a time code (dummy recording).
    ◊ Break in the time-code on the miniDV tape (make a camera to camera copy on a tape which is pre-recorded with nothing/anything so that the tape has a time-code from beginning to the end)
    ◊ If You recorded in LP-mode (90 min on a standard 60 min tape with 12-bit sound). Try to change in iMovie pref. to import but not as individual clips. If this doesn’t work You have to make a Camera to Camera copy with the receiving Camera set to SP-mode and 16-bit sound.
    More:
    ◊ follow advises here http://docs.info.apple.com/article.html?artnum=43000
    ◊ follow Grandmaster Dan's advice for Sony cameras here: http://www.danslagle.com/mac/iMovie/usage/5020.shtml
    NEWS: Jerry Harris writes:
    I know that in a lot of the new Sony HD cameras, iMovie requires that you turn i.Link Conv off. I would look for a similar setting for your camera. This setting has to do with shooting a movie in one format, and using the camera to import as a different format. For instance, if you shoot HD footage and have i.Link conv on - the camera will send DV to the computer etc...
    So, case in point: look for a setting on your camera that has to do with the video format and see if that helps.
    Yours Bengt

  • How To Make Search Query Showing the Result As List of Buttons.

    Can some one give me an idea how to start to make a Search Query showing the results as list of buttons.. i have already have my buttons with names. i just dont know how to make a search query.
    this is my on screen keyboard i made..
    im making a system that the result were a list of buttons.. showing like this
    This was supposed to be the output of the query that i need to do..
    Please help me.. i just need a idea or tips how to make this one.

    Here is code I posted recently for another question
    Public Class Form1
    Const BUTTON_SIZE As Integer = 20
    Const SPACE As Integer = 5
    Sub New()
    ' This call is required by the Windows Form Designer.
    InitializeComponent()
    ' Add any initialization after the InitializeComponent() call.
    Dim buttons As New List(Of List(Of MyRadioButton))
    For row = 1 To 6
    Dim newRow As New List(Of MyRadioButton)
    buttons.Add(newRow)
    For col = 1 To 6
    Dim button As New MyRadioButton()
    button.row = row
    button.col = col
    button.Height = BUTTON_SIZE
    button.Width = BUTTON_SIZE
    button.Left = col * (BUTTON_SIZE + SPACE)
    button.Top = row * (BUTTON_SIZE + SPACE)
    button.Name = String.Format("radGr1{0}_{1}", row.ToString(), col.ToString())
    Me.Controls.Add(button)
    newRow.Add(button)
    AddHandler button.CheckedChanged, AddressOf Radio_Change
    Next col
    Next row
    End Sub
    Private Sub Radio_Change(ByVal sender As Object, ByVal e As System.EventArgs)
    Dim button As MyRadioButton = CType(sender, MyRadioButton)
    Dim row As Integer = button.row
    Dim col As Integer = button.col
    End Sub
    End Class
    Public Class MyRadioButton
    Inherits RadioButton
    Public row As Integer
    Public col As Integer
    End Class
    jdweng

  • How to make text start at the top of a page in livecycle 9

    Hi, How can I get the text in a large text field to start at the top left of the field rather than at the center of the field? In addition, may one know how to make text wrap in the form as well?
    Thanks,
    David

    To set the Text alignment properties use "Paragraph" pallet you can make it visible by selecting Window>>Paragraph or Shift+F5
    And to allow text wrapping you need to select "Allow Multiple Lines" checkbox under "Object" pallet and "Field" tab. You can make Object pallet visible by selecting Window>>Object or Shift+F7.
    Good Luck,

  • I subscribed for itunes imatch - it works perfectly on my i-pad and iPhone - however on my macbook - my iTunes can no longer find my songs - i don't know how to make it look to the cloud to play my music

    i subscribed for itunes imatch - it works perfectly on my i-pad and iPhone - however on my macbook - my iTunes can no longer find my songs - i don't know how to make it look to the cloud to play my music - i think it keeps trying to find on the external harddrive where i used to keep my music

    Of course iTunes is looking for the music on the external HDD. Enabling iTunes Match does not magically change the location of the iTunes library to the cloud.
    To play the music either plug the external HDD back into your computer or create a new, empty library to use for streaming the iTM content. The latter can be accomplished by holding down the Option key when launching iTunes, choosing "create library" then enabling iTunes Match on the new library. DO NOT have iTunes scan your HDD for music.

  • How to make users to select the date from calendar control my making the date field read only in date time control in external list in sharepoint 2010

    How to make users to select the date from calendar control only, by my making the date text field read only (don't want to let users type the date) in date time control in external list in sharepoint 2010. I am looking for a solution which can
    be done through sharepoint desginer / out of the box.
    thanks.

    Congratulate you got the solution by yourself. I am new to a
    WinForms calendar component, I feel so helpless on many problems even I'd read many tutorials. This question on the
    calendar date selection did me a great favor. Cheers.

  • How to make a restart of the workflow in a process controlled workflow?

    Hi Experts,
    How to make a restart of the workflow in case of process controlled workflow? Scenario is like this:
    The user has created a shopping cart with 1000 USD. The process schema has three process level with the first level being approval with completion.
    The first level being executed by the responsible purchaser. Here, the purchaser adds the source of supply and changes the price of the shopping cart 2000 USD and approve the shopping cart.
    Now, I want the approval task to start from beginning so that the requestor can know the changes and accept/reject the changes.
    Thanks and regards,
    Ranjan

    Hi,
    Restarting workflow goes to 1st level approval step. It is not requester.
    I think you need to set condition for "Acceptance by Contact Person" in Define Process Level.
    Regards,
    Masa

Maybe you are looking for

  • How to reuse a jar file in another application

    i have created a jar file.Now i want to reuse this jar file in another java program.Could anyone please guide me with the steps of how to reuse a jar file

  • Xlink sender adapter configuration

    Hi All, Please can you send me a xlink sender adapter configuration. In my scenario, the Eancom message is coming from a third party and getting posted into SAP in the form of an Idoc. I am using Transport as Servlet (AXIS) and message protocol as AX

  • Bluetooth in car ios 8.1 still bad

    8.1 has not fixed my Bluetooth conne took in my Mazda CX-9. I can receive calls but cannot make outgoing calls. I have to keep forcing the connection from the phone and it won't ring thru the car. Once someone answers on the other end then I can conn

  • Mp4 downloading

    Everytime I try to download a mp4 vid that I bought, I get an error that states:Cannot play movie The server is not correctly configured. What/how can I do to fix this? I am using a iPhone 4.0.2 version. Thanks Message was edited by: Ronin555

  • Various installation errors

    These don't appear to be serious, but several programs (notably photoshop, illustrator) installed with similar errors. 1) are these a big deal/something to worry about? 2) what can I do to fix these types of errors? a full listing of the errors from