Movie clips have wrong time when importing

I use to rename my images before importing to iPhoto. I copy them from my camera to a folder in the desktop, rename everything to my like using Adobe Bridge, and then I import them to iPhoto. That way the name of a file usually corresponds to the one in the internal Library (control-freak as I am). That said, I never mess with the Library.
But I'm having this problem all the time: After importing, all the image pictures are listed on the event accordingly to their correct date/time, but the movie clips are not. They always have an irregular variation in time, sometimes with a difference of several hours, that I have to change manually using iPhoto "adjust date/time" to have them sorted ok chronologically. The strange thing is: that EXIF data is correct in Bridge! I even use this to view/reference the correct time in Bridge, and change it on the movie file already imported in iPhoto.
Could this be a bug in iPhoto, or is there something wrong with my way of importing? Again, it happens only to the movie files, not the images.
Thanks.

Thank you. I didn't know that.
But still, for me it's a common issue to have iPhoto reading a wrong "File Created" data on my imported movies, even though it seems to be OK on the original file. Does it ever happen to you, know about that issue? Sometimes I have ten or more movie clips in an event and it's a bit of a hassle to restore manually the correct time for each one.
Maybe it's Bridge fault, maybe it's iPhoto, maybe my workaround is the only answer to this "bug"?
Thanks again.

Similar Messages

  • How do I keep .mov clips from being squashed when imported into iMovie HD6?

    Hi there! First time poster... Hoping someone can help me out with this:
    I've stupidly shot some footage with my digital camera sideways, portrait-style. I used QuickTime Pro 7 to rotate the footage clockwise, preserving the aspect ratio, so now the .mov clips are 480x640 pixels (so 3:4, instead of the standard 4:3).
    When I import the clips into iMovie HD 6, the footage gets squashed to fit the 4:3 screen, making everyone look shorter and fatter. The Help file advises that iMovie "automatically adjusts incoming footage to fit the screen size (aspect ratio) of your project".
    Is there some way I can opt out of this automatic adjustment? I'd prefer to have black bands on the sides of the screen than squashed video!
    Thanks for any help you can give. Cheers!

    You'll need to make an all black 640X480 image file and add it to your video.
    Adjust its layer so it is in the background and then reduce the dimensions of your video so it fits over it.
    Bring this new file into iMovie.

  • How to detect when 2 movie clips have been clicked?

    Hello:
    I'd like to know how can I detect when 2 movie clips have been clicked (irregardles of the order).
    What I have is this:
    In my main timeline I have 2 independent movie clips (mc_him and mc_her) each in it's own layer that, when clicked, play an internal animation without moving my main playhead anywhere. What I need to do is, once they are both clicked (as I said, it doesen't matter in what order), a button that sends me to another section of my movie has to appear. It really doesen't matter if the button shows by enabling it with alpha or by sending me to a specific frame where my button lies. What I need to detect is both clicks so that the button shows up.
    How can I achieve this?
    Thank you very much.

    btn1.onRelease=function(){
    // do whatever
    this.clicked = true;
    checkBothClickedF();
    btn2.onRelease=function(){
    // do whatever
    this.clicked = true;
    checkBothClickedF();
    function checkBothClickedF():Void{
    if(btn1.clicked&&btn2.clicked){
    // do something. both clicked
    // reset both clicked properties?

  • Movie clip resize not working when image is loaded

    Hello,
    I'm having some strange luck in building an image slide
    show. I load the image paths into an array from an XML
    page and then step through the array elements w/ forward and
    back buttons.
    I have an empty image clip on the stage where I create an
    empty movie clip inside each time a new image is loaded. I load the
    image into the second movie clip like this:
    [code]
    _root.picsPage_mc.mc_pic_loader.mc_individual_pic_loader.unloadMovie();
    _root.picsPage_mc.mc_pic_loader.createEmptyMovieClip(
    'mc_individual_pic_loader', 1 );
    _root.load_movie_and_stop(
    _root.picsPage_mc.mc_pic_loader.mc_individual_pic_loader,
    _root.photo_array[_root.photo_index].image,
    _root.picsPage_mc.mc_pbar, 'regular_load');
    [/code]
    The load_movie_and_stop function is as follows:
    [code]
    function load_movie_and_stop( target_mc:MovieClip,
    movie_clip_to_load:String, p_bar:MovieClip, action:String )
    mc_loader._width = 0;
    mc_slider_bar.mc_drag_pan._x = 0;
    if( action != 'simple_load' )
    p_bar._visible = true;
    p_bar.bar._width = 0;
    var mclListener:Object = new Object();
    mclListener.onLoadStart = function( target_mc )
    if( action != 'simple_load' && action !=
    'regular_load' ){ target_mc.stop(); }
    if( action == 'load_and_play' ){ target_mc.play(); }
    mclListener.onLoadInit = function( target_mc )
    _root.resize_movie_clip(target_mc, 160, 120, 250, 190);
    if( action == 'load_and_stop' ){ target_mc.stop(); }
    mclListener.onLoadProgress = function( target_mc )
    if( action != 'simple_load' )
    percentLoaded = Math.floor( (
    target_mc.getBytesLoaded()/target_mc.getBytesTotal() )*100);
    p_bar.bar._xscale = percentLoaded;
    p_bar.txt_percent = percentLoaded + "% loaded.";
    mclListener.onLoadComplete = function( target_mc ){
    p_bar._visible = false; }
    var my_mcl:MovieClipLoader = new MovieClipLoader();
    my_mcl.addListener(mclListener);
    my_mcl.loadClip( movie_clip_to_load, target_mc );
    }//___endFunc___
    [/code]
    After the image is loaded into the movie clip, I then resize
    the image to be a specific width.
    The image resizing is done w/ this function:
    [code]
    function resize_movie_clip(clip_loader_name:MovieClip,
    max_width:Number, max_height:Number )
    orig_width = clip_loader_name._width;
    orig_height = clip_loader_name._height;
    aspect_ratio = orig_width / orig_height;
    if( (orig_width > max_width) || ( orig_height >
    max_height ) ) // If either dimension is too big...
    if( orig_width > orig_height ) // For wide images...
    new_width = max_height;
    new_height = new_width / aspect_ratio;
    else if( orig_width < orig_height )
    new_height = max_height;
    new_width = new_height * aspect_ratio;
    else if( orig_width == test_height )
    new_width = max_width;
    new_height = max_width;
    else { trace( "Error reading image size."); return false; }
    else { new_width = orig_width; new_height = orig_height; }
    clip_loader_name._width = Math.round(new_width);
    clip_loader_name._height = Math.round(new_height);
    [/code]
    Now, 98% of the time this works perfectly, but there is some
    certain times where the image resizing is completely ignored and
    the image gets loaded as it's normal size.
    Can anyone see why the image sizing get's ignored in some
    instance?
    Thanks for any help,
    Clem

    Found the solution that worked (used ._xscale and ._yscale
    instead of ._width and ._height
    [code]
    function resize_movie_clip(clip_loader_name:MovieClip,
    max_width:Number, max_height:Number, center_offset:Number )
    if( (clip_loader_name._width > max_width) || (
    clip_loader_name._height > max_height ) ) // If either dimension
    is too big...
    if( clip_loader_name._width > max_width )
    _root.picsPage_mc.txt_test = "func if 1";
    clip_loader_name._width = max_width;
    clip_loader_name._yscale = clip_loader_name._xscale;
    if( clip_loader_name._height > max_height )
    _root.picsPage_mc.txt_test = "func if 2";
    clip_loader_name._height = max_height;
    clip_loader_name._xscale = clip_loader_name._yscale;
    else { new_width = orig_width; new_height = orig_height; }
    [/code]

  • Apple TV3 will not load a movie I have rented. When I go to Settings/iTunes store/rented movies it still will not load.

    Apple TV3 will not load a movie I have rented. When I go to Settings/iTunes store/rented movies it still will not load.

    Thanks, that worked. Much appreciated.
    john Galizia

  • Wrong capture time when importing from iPhoto to FCPX

    I am experiencing a strange problem when importing from iPhoto to FCPX. If I open the info panel in iPhoto I see the real date/time when the picture was taken, but if I import them to an event in FCPX using the PHotos Browser and I check the info it shows the time when the image was imported to IPhoto and everything gets messed up.
    I have search for somebody with same problem but I have not found anything so far.
    MY workaround is to import directy onto the timeline, but it is... well, a workaround.
    Thanks in advance

    Why is knowing that important during the edit?
    Yes, FCP only shows the date imported" date metadata.  Future updates of FCP X I assume will add more metadata support, such as Creation Date and Modification Date, since metadata is vital to FCP X and there are some metadata handling features that are on the way. 

  • IMovie HD refuses to import .MOV clips that it used to import.

    I've got an odd problem. Doing a search didn't turn up anything relevant to my situation so I'm gonna try to pick some brains on here.
    My Problem: My version of iMovie(5.0.2) no longer recognizes .mov clips that it used to. Meaning that when I try to import clips using settings that worked previously, I am now confronted with an Error during import message that reads "The file could not be imported: Unknown Error". Two things have changed since I last made a project.
    1.) I have added a microphone that now allows me to record stereo audio. I don't think this is the culprit.
    2.) I updated to 10.6.6 Recently. I think this may be what messed things up.
    After trying to Drag and also import clips through the menu with no success, I tried to import clips that I have used before under the exact same conditions and was greeted with the same error. This is importing using the HDV 720p setting. If I try to import new or old clips using the standard DV (16:9) setting then everything works.
    These same clips are able to be imported into iMovie '09 with no trouble but I am uncomfortable with that interface. Is there anything I can do to continue to work in iMovie HD or would I just be better off with getting used to iMovie 09?
    Thank you for any replies.

    I have Mac 10.6.6 and use iMovie 05 transferring it to iDVD 08. It is getting less easy to do, but usually i make the movie in 05, complete with chapter marking and press the export to DVD.
    The file for the Movie I have made is saved automatically in the Movie folder on my owner/home page. To get it out to iDVD 08 open 08 and select create new project and click save This puts a small file into Documents, However to get your work into the new DVD select import>video and when the screen opens for you to find it go to your movie folder in your owners area and click to open the file. It works, but there is usually a problem somewhere along the line. Usually a different one each time, occasionally it goes like clockwork. It won't work if you try the drop down 'open' option.
    This last time I got so irritated that I've downloaded the last set of film clips to 05 and then transferred them to 08 to compare the results. I still feel that the later versions are less good (?dumbed down) and await to be converted.

  • Invitations have wrong time

    This happens rarely, but consistently with a customer who sends me invitations. They are always off by 10 hours, and I've missed some important meetings. I run Outlook in VMWare Fusion on the same Mac, and the appointments go into Outlook correctly. So whether the appointment is at the right time or not depends on whether I happen to see it first in Outlook or iCal.
    I have time zones set in iCal.
    The appointment appears to have the correct time and time zone set in it; it just gets put in the wrong place by iCal.

    Thank you. I didn't know that.
    But still, for me it's a common issue to have iPhoto reading a wrong "File Created" data on my imported movies, even though it seems to be OK on the original file. Does it ever happen to you, know about that issue? Sometimes I have ten or more movie clips in an event and it's a bit of a hassle to restore manually the correct time for each one.
    Maybe it's Bridge fault, maybe it's iPhoto, maybe my workaround is the only answer to this "bug"?
    Thanks again.

  • Is this a bug?: copied movie clip has wrong frame rate and ruins the main movie's sync

    Hello,
    I am trying to copy a movieclip with a frame rate of 30 frames per second to a movie that has a frame rate of 30 frames per second. Both movies are actionscript 3 movies. When I do this, my copied movie clip's frame rate reverts to 12 frames per second and all my audio synched animation is trashed. Then when I change it back manually to 30 frames per second it makes my main movie's stage animation go crazy at full possible speed and the audio is all out of sync. I have not set export for sharing or action script on this movie clip. I've tried other movie clips that are 30 frames per second and it is all crazy!
    Is this a bug? What can I do? I've got 100s of movie clips I need to make. I can't keep remaking them just because flash has a screw loose. I'll go crazy!
    -theGibler

    Oh sorry I goofed! My main time line is 12 fps! I can't belive I didn't see this before.

  • How do I get audio back on single clip that loses audio when imported into Premiere Pro CC?

    I've got one clip out of many that for some reason won't play any audio when imported into Premiere Pro.  I am new to Premiere Pro so am hoping it's something stupid I've done, but this is a problem with just a single clip exported the same way as all my others, the original audio is loud (not quiet) and none of the FAQ issues seem to apply (ie I haven't muted the audio or anything stupid like that)
    The clip was exported from Plural Eyes into a "master" Premiere Pro project where the audio is fine. I exported it as a short MP4 clip and if I play the clip in Windows Media Player the audio is there loud and clear.
    But when I import the clip into a fresh Preimiere Pro CC project this clip appears with just the "film strip" icon on the far left in the Timeline panel, unlike other clips which have an icon that shows "film strip" in the background and "audio wave" in the foreground.
    I'm hitting so many glitches with the CC editions of Premiere Pro and After Effects which have annoying inconsistencies between them I'm tempted to just go back to Sony Vegas Pro (single program, no hassle) but hoping most of these issues are down to "newbie incompetence". Very hard to understand why this one clip out of many should be giving me this specific problem though. Any ideas?

    I'm getting so many weird results. Most go away by simply closing the project and re-opening and I only have 6GB memory but even so, I'm disappointed by what I thought was supposed to be more "world class" video editing software than Sony Vegas Pro which I found to be a lot more stable. Also struggling with differences between Premiere and After Effects. Every time I want to do something in Pro I seem to need to go to After Effects and vice-versa. After Effects lets me do more of what I could "just do" in Vegas Pro timeline, but it's hideous for lining up audio and having to render anything in RAM to even get a clue as to what a change has done.  Need to add Audition to the long list as well I suspect. Fun times!

  • JSP page display wrong time when compared to the server time

    Hi,
    This problem seems to weird but it is happening
    I have web application running where time is displayed in the page. In this application time is very critical. Currently, time is an hour behind the orginal time.
    I checked the server it is displaying proper time.
    As a matter of troubleshooting, I wrote a java program and run the program in the same server, where the application is running. The java program returns me proper time , but JSP is still displaying time an hour behind. To trouble shoot further, I created a test jsp page to just display the time and accessed the time and the jsp displayed wrong time as well, an hour behind.
    I am running[ tomcat 4.0.3 and j2sdk1.4.3 in suse linux enterprise server 9.0
    My Java program
    import java.util.*;
    import java.text.*;
    public class TestDate
    public static void main(String s[])
         try{
              DateFormat DF = new SimpleDateFormat( "dd/MM/yyyy");
    DateFormat DT = new SimpleDateFormat("hh:mm aa");
              SimpleDateFormat fmt=new SimpleDateFormat("HH.mm");
              Calendar cal= Calendar.getInstance();
              java.util.Date dt=cal.getTime();
              String curdt=DT.format(dt);
              System.out.println("Server Time" + curdt + "\n");
              int hh = cal.get(Calendar.HOUR);
              int mm = cal.get(Calendar.MINUTE);
              int aa = cal.get(Calendar.AM_PM);
              System.out.println("Time" + hh +":"+mm+":"+aa+"\n");
         }catch(Exception e) {
         e.printStackTrace();
    This display Time3:30:1
    My JSP Page
    <%@ page import="java.util.*,java.text.*"%>
    <%
    Calendar calen;
    calen = Calendar.getInstance();
    int hh=calen.get(Calendar.HOUR);
         int mm=calen.get(Calendar.MINUTE);
         int aa=calen.get(Calendar.AM_PM);
    %>
    <%=hh%> <%=mm%> <%=aa%>
    This display 2 30 1
    When I run Date in linux server it gives 3:30 PM EST 2004
    I am really confused, why this is happening, If you have any solutions or idea please post the solution.

    My guess is that the weirdness is caused by Daylight savings time.
    I will presume that you and the server are in the same timezone :-)
    Alternatively it could be caused by getting a different Locale.
    Try the following
    Print out "date.getTime()" value (ie long representing number of millis)
    They should be the same (or close) in both the app and in JSP
    Try simple date format in your JSP as well - what does that result in?
    Print the calendar object, and look for the difference.
    It might be in Locale, Timezone, or whether DST is set or not.
    Hope this helps,
    evnafets

  • Wrong date when importing video from AVCHD

    Hi,
    I encountered a problem with the new Photos application: when importing photos and videos from my camera (Sony α5000, fairly recent), the dates of the videos are all wrong. In fact, all videos have the same date as the AVCHD directory on the SD card, instead of using the corresponding clip file date. I checked with iPhoto, and the app put the correct date on the file.
    Could you fix this bug? Or is there a better place I could submit the bug to?

    Welcome to the family, Shane's material will get you started.
    Also, search the forums for Nikon, DSLR, and related terms. You also need to read the manual that came with the Nikon, it clearly explains the codec in use. There are literally millions of Nikon and Canon DSLR video geeks out there and they support each other's efforts on the manufacturers' supprot sites as well as hundreds of other forums. You will find may more Nikon shooters who use FCP on Nikon forums than you will find FCP users who use Nikons here.
    bogiesan

  • Wrong timezone when importing invitation ics from Lotus Notes

    Dear all,
    I have the problem that the timezone is not correctly detected when importing invitations from  Lotus Notes (PRODID:-//Lotus Development Corporation//NONSGML Notes 8.5.2//EN_C) The event is one hour too late, I cal thinks it is "standard time" and not "daylight saving time"
    This is the Timezone difinition in the ics file:
    BEGIN:VTIMEZONE
    TZID:W. Europe
    BEGIN:STANDARD
    DTSTART:19501029T020000
    TZOFFSETFROM:+0200
    TZOFFSETTO:+0100
    RRULE:FREQ=YEARLY;BYMINUTE=0;BYHOUR=2;BYDAY=-1SU;BYMONTH=10
    END:STANDARD
    BEGIN:DAYLIGHT
    DTSTART:19500326T020000
    TZOFFSETFROM:+0100
    TZOFFSETTO:+0200
    RRULE:FREQ=YEARLY;BYMINUTE=0;BYHOUR=2;BYDAY=-1SU;BYMONTH=3
    END:DAYLIGHT
    END:VTIMEZONE
    BEGIN:VEVENT
    When I change it to this definition:
    BEGIN:VTIMEZONE
    TZID:W. Europe
    BEGIN:STANDARD
    DTSTART:16010101T030000
    TZOFFSETFROM:+0200
    TZOFFSETTO:+0100
    RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=-1SU;BYMONTH=10
    END:STANDARD
    BEGIN:DAYLIGHT
    DTSTART:16010101T020000
    TZOFFSETFROM:+0100
    TZOFFSETTO:+0200
    RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=-1SU;BYMONTH=3
    END:DAYLIGHT
    END:VTIMEZONE
    the event is correctly scheduled. Now the timezone is daylight saving time. Any hints on what is going wrong?
    Thanks for your help!

    My suggestion is to open a bug report with Apple if you can demonstrate that this always occurs. And, provide sample file (as you have above). https://bugreport.apple.com
    As a work around I have let my customers know that the Calendar app in iOS appears to work fine and to attempt to accept event invitations through that rather than through Calendar app in OS X.
    I also hope to create a simple script, droplet or automator workflow that could filter the timezones into Apple Calendar app friendly names. But, so much to do...

  • In the time line, cutaways and titles are supposed to be linked on the top side of movie clips in the time line window.  I don't know what I did, but now they are linked to the bottom side.  How do I get them up to the top where they belong?

    I'm working on a movie in FCP and using cutaways and titles in many places in the timeline.  While working on a movie 2 days ago, and I don't know what I did, all the cutaways and titles are now linked to the movie clips from below rather than above.  When I "grab" them and drag them up to the top-side, as soon as I "release", they go back down.  Along the menu bar, I've check the "view", "modify", "clips", etc., looking for any thing that might refer to appearance of the time line.  What must I do to get the cutaways and titles back on top where they belong?  The audio clips remained properly-linked to the time line and play properly.  The cutaways and titles can be seen but do not play. 

    The cutaways and titles should be linked above the timeline clips, not below

  • Some events appear at wrong time when publishing to web

    When I publish my calendar and then view it on the web, events I have created myself in iCal are shown at the correct time, but any events I have recieved from Evolution (the email/calendar application my colleagues use) as an .ics file are shown exactly 8 hours later than they should be. Perhaps it's a coincidence that this is the exact time difference between the UK (where I live and work) and West Coast USA?
    Just to make it clear: all events appear correctly in iCal and, if I send a subscribe email to myself and then subscribe to the published calendar, they also appear correctly in iCal. The only place where they appear at the wrong times is in the http://ical.mac.com/<username>/<calendarname> address, and it's only events that I have recieved via email.
    Is there a workaround for this that doesn't involve asking my colleagues to change settings on their Ubuntu workstations? Perhaps it's a problem with Apple's ical website that they need to fix? Either way, it makes the business of publishing my calendars largely useless.

    Bernard Harte wrote:
    It's likely that the problem is due to an incompatibility between the way that the two systems define time zones.
    This is what I thought, but iCal itself seems to cope with this, whereas the .Mac iCal web server doesn't, which is a shame.
    I suspect that you don't have time zone support switched on in the Advanced tab of Preferences. If you don't, try switching it on and then looking at one of your events and one of the rogue ones in the edit window. You'll probably see a difference in time zones - i.e. that the rogue ones are in US Pacific zone.
    I switched on time zone support, but it didn't change any of the events in iCal at all; i.e., the "rogue" events still show at the correct time (and the incorrect time on the iCal web server).
    If this guess is correct, you will need to get your colleagues to change their time zone since iCal and ical.mac.com are behaving as they should.
    They are all on the same timezone as me - Europe/London (which is currently on DST).
    If the guess isn't correct, report back and we'll work on a solution
    Then I look forward to hearing from you!

Maybe you are looking for

  • Error: java.lang.OutOfMemoryError when uploading CSV files to web server

    Hi experts, I have made a JSP page from which clients load csv files to web server. I am using Tomca 4.1 as my web server and JDK 1.3.1_09. The system works fine when uploadiing small csv files, but it crashes when uploading large CSV files. It gives

  • Menu Items not showing up...

    Okay I fixed the problem. No more looking at my source code ;) Edited by: 968755 on Oct 31, 2012 2:37 PM

  • Can't Edit SWF in CS5 Flash Pro

    Forgive the noobness, but I'm trying to find out why I can't open a SWF file in CS5 Flash Pro. When I attempt to open the file, it opens in a box as seen in this screeen cap. I'm using Win 7 on my desktop.

  • "Authorization" issue in iTunes

    When I sync my iPhone w/iTunes I keep getting the message that several apps. cannot be transferred from iPhone to Computer and that I need to go to Store and Authorize Computer.  My computer s already authorized.  I have been unable to resolve this i

  • Why can't I connect to the internet after reinstalling the computer (windows xp home edition)?

    I just reinstalled the computer (windows xp home edition) due to spyware but now I cannot access the internet.. I am sure that the router is working and that the adapter works as well as when ever I check, it says that I am "connected to the access p