Help please, talking out of synch?

Hey there,
Im using imovie 11, and have a problem. I have made a 6 minute snowboarding feature, with 1 song in the background, it has about 4 small 15-20 second interviews in it. Everytime i play it from the start the 'dubbing' seems to go out (people talking, mouth moving at different times to words)
I have tryed to fix this problem but have had no luck? any suggestions?
Cheers Robie

If you go to the Project Browser and click on one clip, then select all (⌘ Command key + A) Then go to the File Menu choose Optimize Video > Large Size. Does it allow you to choose that option or any Optimize options?
Another trick to re-establishing sync is to detach the audio. Select a clip, go to the Clip Menu > Detach Audio:

Similar Messages

  • Help please jvm out of memory

    Could some some please help me with this i hava a programe which is reading email from amd email sever using javamail.
    My problem is that when this pgrograme have to read more than 27 thousand emails and filter them at the same time but as soon as i get to 5900 the jvm runs out of memory. i have tried increaing memory using -Xms and Xms this seem to work but i still get memory leaking could some one have a look at my code i would be very happy to any light at to why or where the leak is comming from.
    at the moment i have managed to track the leak to the "searchEMail" method
    if you cam help my email is [email protected] or [email protected]
    =====================================================================
    EmailFilter.java
    wokoli
    =====================================================================
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.swing.JProgressBar;
    import javax.swing.JWindow;
    public class EmailFilter
      extends Authenticator implements EmailHelper
      protected String from=null;
      protected Session session=null;
      protected PasswordAuthentication authentication=null;
      private Properties props=null;
      private TreeMap bounced=null; 
      private long start=0;
      private long end=0;
      private PrintWriter out=null;
      private int blockSize=100;
      private Store store=null;
       public EmailFilter(Properties props){  
        this(null, null,props);
      public EmailFilter(String user, String host,Properties props)
      try{      
        if(props==null)
          props = new Properties();
          System.out.println("Reading properties file...");
          props.load(new FileInputStream("config.properties"));
          from = user + '@' + host;     
          props.setProperty("mail.user", user);
          props.setProperty("mail.host", host);
          props.setProperty("mail.password",user);     
      }catch(Exception e){
         e.printStackTrace();
        authentication = new PasswordAuthentication(props.getProperty("mail.user"),props.getProperty("mail.password"));
        props.setProperty("mail.store.protocol", "pop3");
        props.setProperty("mail.transport.protocol", "smtp");
        session = Session.getInstance(props, this);
        blockSize=Integer.parseInt(props.getProperty(BLOCKSIZE));
        this.props=props;       
        processCsvFile();
    private int column=0; 
    protected void processCsvFile()
      Recipient resp=null;
      BufferedReader reader=null;
      try {
        File  file=new File("report.csv");
        if(!file.exists())
         return;      
        System.out.println("Reading report.cvs file...");
        reader= new BufferedReader(new FileReader(file));
        StreamTokenizer parser = new StreamTokenizer(reader);
        parser.wordChars(' ', ' ');
        parser.wordChars('@', '@');
        parser.wordChars(':', ':');
        parser.wordChars('-', '-');
        parser.wordChars('"', '"');
        parser.eolIsSignificant(true);
        int nxtToken=0;
        while ((nxtToken=parser.nextToken()) != StreamTokenizer.TT_EOF )
          if(nxtToken==StreamTokenizer.TT_EOL)
           column=0;     
           resp=new BouncedEmail();
         if(parser.lineno()>1)
          switch (parser.ttype)
            case StreamTokenizer.TT_NUMBER:
             switch (column)
                case 1:{
                   resp.setCount((int)parser.nval);       
                       column++; break;
               break;
            case StreamTokenizer.TT_WORD:
               switch (column)
                case 0:{                             
                    resp.setEmail(parser.sval);            
                       column++; break;}
                case 2:{
                 String str=parser.sval.replace('"',' ');;
                    resp.setDate(str.trim());     
                       column++;break;}
                case 3:{                  
                 String str=parser.sval.replace('"',' ');;
                    resp.setTime(str.trim());                 
                       column++; break;}
               break;
               default:
             addBounced(resp);
           } catch (IOException e){
               e.printStackTrace();
          }finally{
          try{
              if(reader!=null)
                  reader.close();      
             }catch(IOException ioe){
            ioe.printStackTrace();
      public PasswordAuthentication getPasswordAuthentication(){
        return authentication;
      private boolean searchEmail(MimeMessage msg)
       String criteria=null;
       String str=null;
    try{      
        criteria=(String)props.get(FROM);
        str=(String)msg.getFrom()[0].toString();
        if(criteria!=null && criteria.length()>1 && str!=null && str.length()>1)
         if(doSearch(str,criteria)==BOUNCED)
           return BOUNCED;
       criteria=(String)props.get(SUBJECT);
       str=(String)msg.getSubject();
       if(criteria!=null && criteria.length()>1 && str!=null && str.length()>1)
        if(doSearch(str,criteria)==BOUNCED)
         return BOUNCED;  
      /*criteria=(String)props.get(BODY); 
       Object  o = msg.getContent();
      if (o instanceof String) {
        str=(String)o;   
       } else if (o instanceof Multipart) {
        Multipart mp = (Multipart)o;
        //int count = OutOfMemoryErrormp.getCount();
        //for (int i = 0; i < count; i++)
        //dumpPart(mp.getBodyPart(i));
       } else if (o instanceof InputStream) {
         //System.out.println("--This is just an input stream");
         //InputStream is = (InputStream)o;
         //int c;
         //while ((c = is.read()) != -1)
         //     System.out.write(c);
      if(criteria!=null && criteria.length()>1 && str!=null && str.length()>1)
        if(doSearch(str,criteria)==BOUNCED)
         return BOUNCED; 
    }catch(OutOfMemoryError oome){
        System.out.println("while in searchEmail "+oome);   
        System.out.println("while in searchEmail "+oome.getStackTrace());
        finalize();
        System.exit(0);  
      catch(javax.mail.internet.AddressException ae){}
      catch(NullPointerException npe){}
      catch(Exception ex){
       //ex.printStackTrace();
       ex.getMessage();
      return !BOUNCED;
      //str is the content that you wnat to search and criteria is the 
      //what you are searching for
      //str      -> From, Subject or Body from Message Object
      //criteria -> From, Subject or Body from Prop file 
      private boolean doSearch(String str,String criteria)
      if(str==null || criteria ==null)
         return !BOUNCED;
        StreamTokenizer token=new StreamTokenizer((Reader)new StringReader(criteria));
        StringSearch sch=new StringSearch(str.getBytes());
        token.wordChars(' ', ' ');
        token.wordChars('@', '@');
        token.wordChars(':', ':');
        token.wordChars('-', '-');
        token.wordChars('"', '"');
        token.eolIsSignificant(true);
        int nxtToken=0;
        try{
        while ((nxtToken=token.nextToken()) != StreamTokenizer.TT_EOF )
           if(token.ttype==StreamTokenizer.TT_WORD)
         if(sch.indexOf(token.sval)>-1)
              return BOUNCED;              
          }catch(OutOfMemoryError oome)
             System.out.println("while in doSearch ");
             oome.printStackTrace();
        }catch(IOException ioe){
         ioe.printStackTrace();
        return !BOUNCED;
      public void sendMessage(String to, String subject, String content) throws MessagingException
          MimeMessage msg = new MimeMessage(session);
        msg.addRecipients(Message.RecipientType.TO, to);
        msg.setSubject(subject);
        msg.setText(content);
        Transport.send(msg);
      private void addBounced(Recipient resp)
        if(resp==null)
         return;        
        if(bounced==null)
             bounced=new TreeMap();
        String email =resp.getEmail();
        if(email==null)
             return;
         if(isExisting(email)==null){    
           bounced.put(email,resp); 
      private String isExisting(String key)
       if(key==null || bounced==null)
        return null;    
      String name=null;
      Iterator itr=bounced.keySet().iterator();
      while(itr.hasNext())
       name=(String)itr.next();
       if(name==null)
          return null;
       if(name.equals(key))
        return name;
      return null;
    private void writeReport()
      if(bounced==null)
           return;
      Recipient resp=null;  
      File file =null;
       try{
      if(out==null) //writing for to file for the first time
        file=new File("report.csv");
        if(file.exists())
         System.out.println("Found and deleted report file "+file.delete());
         file =new File("report.csv");
         out =new PrintWriter(
              new BufferedWriter(
              new FileWriter(file)),true); 
          out.println("Email,Count,Last Date Bounced,Lasted Time Bounced");    
       Iterator itr=bounced.keySet().iterator();
       String key=null;
       System.out.println("Writing report...");
       while(itr.hasNext())   
        key=(String)itr.next();
        resp=(Recipient)bounced.get(key);
        out.println(key+","+resp.getCount()+",\""+resp.getDate()+"\",\""+resp.getTime()+"\"");     
       }catch(Exception ex){
        ex.printStackTrace();
       }finally{
        if(bounced!=null)
         bounced.clear();
         bounced=null;
         out.flush();
    private void collectGarbage()
      System.out.println("mem before "+Runtime.getRuntime().freeMemory());
      Runtime.getRuntime().gc();
      System.out.println("mem after "+Runtime.getRuntime().freeMemory());
      System.out.println("Garbage collected");     
    private void createBouncedEmail(String email,String date, String time,int count)
       if(email==null)
        return;
       String name=isExisting(email);
       if(name!=null)
        Recipient res=(Recipient)bounced.get(name);
        bounced.remove(name);             
        int c=res.getCount();
        addBounced(new BouncedEmail(email,res.getDate(),res.getTime(),++c));
       }else  
       addBounced(new BouncedEmail(email,date,time,count));
      public void checkInbox(int mode) throws MessagingException, IOException
       Folder inbox=null;
    //   Store store= null;
       JProgressBar pbar=null;
       JWindow window=null;
       try
        if (mode <0) return;
         boolean show = (mode & SHOW_MESSAGES) > 0;
         boolean clear = (mode & CLEAR_MESSAGES) > 0;
         String action =
          (show ? "Show" : "") +
          (show && clear ? " and " : "") +
          (clear ? "Clear" : "");
         System.out.println("Checking mail on: "+props.getProperty("mail.host"));     
         store = session.getStore();
         System.out.println("Trying to connect to mail server: "+props.getProperty("mail.host"));
         store.connect();    
         System.out.println("Connected on mail server : "+getRequestingSite());    
         Folder root = store.getDefaultFolder();    
         inbox = root.getFolder(INBOX);
         System.out.println("Opening mail folder for Reading");    
         inbox.open(Folder.READ_ONLY);
         Message[] msgs = inbox.getMessages();
         if (msgs.length ==0){
          System.out.println("No messages in inbox");
        for (int cnt = 0; cnt < msgs.length; cnt++)
          MimeMessage msg = (MimeMessage)msgs[cnt];
          System.out.println("Reading msg "+cnt);
         if(searchEmail(msg)==BOUNCED)
          createBouncedEmail(msg.getFrom()[0].toString(),null,null,-1);
         if (show)
             System.out.println("    From: " + msg.getFrom()[0]);
             System.out.println(" Subject: " + msg.getSubject());
             System.out.println(" Content: " + msg.getContent());
         if (clear)
            msg.setFlag(Flags.Flag.DELETED, true);
         if((bounced!=null && bounced.size()==blockSize) || cnt==msgs.length-1)
          writeReport();
         if(cnt%100==0)
            collectGarbage();
        //writeReport();
        //end=new Date().getTime();
        //System.out.println("Time complted: "+new Date());  
        //System.out.println("Time taken to complete: "+new Date(end-start));
       }catch(OutOfMemoryError oome)
             System.out.println("while in checkInbox ");
             oome.printStackTrace(); 
       }catch (AuthenticationFailedException afe){
            afe.printStackTrace();
       }finally{
       if(window!=null)
         window.dispose();
       if(inbox!=null)
        inbox.close(true);
       if(store!=null)
        store.close();
       if(out!=null)
        out.close();
    protected void finalize() 
          try{
               if(out!=null)
      out.close();
               if(store!=null)
      store.close();
      System.out.println("Closing connection...");
          }catch(Exception ex){
          ex.printStackTrace();
    }

    Cross posted
    http://forum.java.sun.com/thread.jsp?thread=429947&forum=4&message=1920034

  • Help Please - Running out of Disk Space

    I run minimal apps on my iMac.
    Hard drive size:1000GB
    Using "get info" under my Mackintosh HD, I have the following space used:
    Applications folder uses: 33.13 GB
    Library folder uses: 8.94 GB
    System folder uses: 4.95GB
    Users folder uses: 3.61 GB
    for a total used of about 50 GB
    But when I do "get info" on my Mackintosh HD, it says I have 899 GB used.
    Where are the other 849 GB being used?  I'm running out of space with no way to figure out what is using the space.
    I am running Mac OS X 10.6.8.
    Yes. I have rebooted.  The used disk space amount remains the same.
    Any assistance would be appreciated.

    Here are some space liks.
    http://www.macworld.com/article/1165698/seven_ways_to_free_up_drive_space.html
    http://support.apple.com/kb/PH10677?viewlocale=en_US
    http://www.macworld.com/article/1052495/slimharddrive.html
    https://discussions.apple.com/thread/5464403?tstart=0
    http://pondini.org/OSX/LionStorage.html
    ttp://www.thexlab.com/faqs/faqs.html
    http://thexlab.com/faqs/freeingspace.html
    lhttp://pondini.org/OSX/DiskSpace.html
    Maybe some of these will help you

  • I'm in Bali and my Iphone is missing. Need help please figuring out what to do.

    I tried to locate it by using ICloud but got a message says the phone is offline.  Then I locked it via I Cloud. Now I have an email saying:
    "Putra wijaya was locked at 10:57 PM on April 19, 2012 using your new passcode.", and IPhone shows this name listed on my phone on ICloud. I'm trying to track down this person but it may be impossible since it the phone location won't show up on I Cloud.. What should I do? I sent a message to the phone offering a reward but I'm not sure if the message will get through if the phone is locked. If it's locked does that mean the person can't use it?  Why does the phone now have this persons name attached to it on my I Cloud page? Should I wipe the phone and cut my losses?  If I wipe it does that mean I no longer can communicate with it? My hope was that if the phone is locked the person can't use it, and if he gets the message I sent offering a reward, he will return it.  But I have no idea if the message will get through, or how this all works with I Cloud. Thanks so much for advice!

    The searching is not wi-fi related - it is searching for a cell network. You need to disable 3G and Cellular data uder Settings, General, Network.
    To find your settings and google icons, swipe the screen left to reveal other screens - they're there somewhere

  • Photoshop CS6 could not update successfully.  Error codes Adobe Photoshop 13.0.1.3 Installation failed. Error Code: U44M1P7  Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7  Please help me figure out how to call customer service. 

    Photoshop CS6 could not update successfully.  Error codes Adobe Photoshop 13.0.1.3 Installation failed. Error Code: U44M1P7  Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7  Please help me figure out how to call customer service.  I would prefer to talk to someone directly.

    Are you using any disk cleaner or optimization tools like CleanMymac or Mackeeper?
    Regards,
    Ashutosh

  • Hi - I'm trying to sync iBooks on my Macbook Pro with iBooks running on my iPad. I have some pdf's download from the net I want to share between devices and I can't work out how to sync the two devices. Any help please?

    Hi - I'm trying to sync iBooks on my Macbook Pro with iBooks running on my iPad. I have some pdf's download from the net I want to share between devices and I can't work out how to sync the two devices. Any help please? I'm running Mavericks

    Thanks for your help Brij011 - much appreciated. Apologies as I'm a newbie but I've looked at the info for synching and I appear to have all the switches flicked on my iPad. Does the iPad and iBooks only sync in iCloud for purchases as I appear to be doing something wrong. I could sync ok when books was in iTunes but since migrating to Mavericks I think I'm doing something wrong!!

  • I  used to have an OLD Photoshop cd but it has been lost and my program is no longer on cd. I talked with some photographer friends and this is what one of them told me to get: Adobe Photoshop Lightroom and CS CC... HELP please?

    I  used to have an OLD Photoshop cd but it has been lost and my program is no longer on cd. I talked with some photographer friends and this is what one of them told me to get: Adobe Photoshop Lightroom and CS CC... HELP please?

    If you still have your serial number, look at OLDER previous versions http://www.adobe.com/downloads/other-downloads.html
    Otherwise, the US$ 9.99 plan is what is current at Cloud Plans https://creative.adobe.com/plans

  • I recently deleted two albums off of my iphone via itunes but, they are still showing up on my phone, they are not albums that i have purchased through itunes, can someone help me figure out how to delete them please?

    I recently deleted two albums off of my phone using itunes, but when i went back onto my phone, they were still there and playable. they are not songs that I have purchased via itunes so can someone please help me figure out what is wrong so that i can fix the problem

    Hi, Abril_Perez17.
    This may be related to a new feature embedded in iOS7 that shows all purchased music by default.  Go to Settings > Music, then turn off Show All Music.  See if the issue ceases once the feature has been disabled.  This information is located on page 63 of the user guide below. 
    iPhone User Guide
    Regards,
    Jason H. 

  • My Mac Book Pro was really slow at everything and would kick me out of my photos every time i got on them. now it won't even allow me to log on. i put my password in and the screen will flash white and go back to the login page. HELP please...

    My Mac Book Pro was really slow at everything and would kick me out of my photos every time i got on them. now it won't even allow me to log on. i put my password in and the screen will flash white and go back to the login page. HELP please...

    There is nothing wrong with your Dell, it will work fine with any MacbookPro. I have been using Dell displays for over 12 years with many different Mac models. I have two 21" Ultra Sharp displays working side by side to design a Keynote presentation right now.
    The issue your having is with the way Keynote  takes control of the video output to both displays, it sends the presentation signal to one and the presenter display to the other, this is set up in;
    Keynote preferences > Presenter display.
    If you want to show a wesite or another app on  either display,  use application switcher:
    press the the  command key on the keyboard, then the tab key; a row of applications will show what applications are running, choose which one you want to show. Use command  > tab to return to Keynote.

  • Not able to open adobe XI Pro after I have filled out a documents and trying saving it. The program stops working & won't open up again.  Tried to complete a repair, rebooting nothing works. Help please.

    Not able to open adobe XI Pro after I have filled out a documents and trying saving it. The program stops working & won't open up again.  Tried to complete a repair, rebooting nothing works. Help please.

    Hi,
    Can you pls. provide more details of the issue?
    OS/Platform
    It would be great if you can provide the MSI logs for repair from the %temp% directory.
    Thanks,

  • I can't figure out how to get my music to shuffle on my iPhone 5s. If I try to skip a song, it skips about 100 songs. It only ends up playing 4 or 5 songs then goes back to the song menu. Help please!

    I can't figure out how to get the music on my iPhone5s to shuffle. If I use the arrows to skip a song, it shuffles through a handful of the same songs then goes back to the song menu. Help please!

    Un-sync all your music to remove it from the device, then restart (hold down the home button along with the sleep/wake button until you see the apple, then let go). Now re-sync your music.

  • My MacBook Pro spits out a CD within 30 seconds.  It doesn't show up anywhere.  Help please.

    My MacBook Pro spits out a CD within 30 seconds.  It doesn't show up anywhere.  Help please.

    You can try a commercial lens cleaner.  They are sold everywhere for little expense.
    http://www.walmart.com/ip/Memorex-32020022912/15120287

  • HT6154 Can someone please just help me figure out how to update this stupid phone without losing anything? I somehow have more than one Apple ID on this,but I just want my music and my pictures to stay and I'm terrified of losing these things.

    Can someone please just help me figure out how to update this stupid phone(iPhone 4)without losing anything? I somehow have more than one Apple ID on this,but I just want my music and my pictures to stay and I'm terrified of losing these things. I have a lot of music from old CDs on here,and for some reason I can't even transfer them manually onto my computer. I'm not tech savvy whatsoever. Someone please help,having my music is the the whole reason I still have this phone.

    First read about back http://support.apple.com/kb/ht1766
    Then  read on how to transfer photos to your computer http://support.apple.com/kb/ts3195
    Then
    UPDATING iOS
    Over the air updating of iOS needs iOS 5 or later so unless you have iOS 5 or later you will not see updating in setting
    The following link explains how to update http://support.apple.com/kb/HT4972
    This link explains how to update using wireless http://support.apple.com/kb/HT4623
    This explains how to transfer purchases to your computer http://support.apple.com/kb/ht1848

  • I changed the name of my apple id and now I can't use the app store on my phone correctly because it's using my apple id's old name. I signed out and in on itunes and synced my iphone. Still doesn't work. Help please?

    I changed the name of my apple id and now I can't use the app store on my phone correctly because it's using my apple id's old name. I signed out and in on itunes and synced my iphone. Still doesn't work. Help please?

    Settings>Store...tap the ID shown...sign out...sign back in with the ID you want to use.
    Note: Apps are forever tied to the Apple ID used to originally obtain them. They cannot be updated using any other Apple ID other than the one they were originally obtained with.

  • I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it. help help help please - I have latest version of indesign - thanks

    I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it.
    Is it not possible to create a text box, fill it with dynamic (data driven) text, but make the font size either scale up or down automatically, so that the entire text box is filled? This is a feature in PrintShop Mail Pro called COPY FIT. but no such feature in Indesign??
    help help help please - I have latest version of indesign - thanks, DJ

    lol... it seems to work, but I have another huge problem!
    Apparently .CSV files cannot contain page breaks in the data! The data I am trying to merge is a 'letter', with paragraphs, line breaks, etc.,
    But, after data merging, it ignores page breaks and only merges the first paragraph of each letter. (sigh)
    Solution? Hopefully, an EASY solution. lol as we have thousands of records.
    Is there a third party indesign plugin that will allow .xml, or .xls data merge import??
    Thx,
    DJ

Maybe you are looking for

  • Windows 7 and Office 2010 activation issues

    hey everyone since a few days we facing really strange issue here within our school. We are running windows 7 machines and office 2010 and all our different machine types is it VDI VMs, physical laptops, desktop computer or provisioning machines (Cit

  • A way to track where all the Sub Var are applied?

    Hopefully this is the section where to post. Is there a way of tracking where all the substitution variables are being used in the reports? Either in reports or calc scripts, or in a 3rd format, if there is one. We just don't want to open up each scr

  • Sharing 5.1.1 files with G5 user

    I'm using 5.1.1 but my business partner has a G5. Is there any way to share projects?

  • Plea to Apple to sort iCal invitations - or has someone got a workaround?

    I know there are a million threads on this topic, so I've phrased this more as a plea to Apple to sort out rather than a question. But there is a question - has anyone got a workaround this? I use iCal and MacMail. I have 2 email accounts and 2 calen

  • Implementation assistant

    Hello Experts, what is implementation assistant and solution architect or solman and is it delivered along with SAP standard system? is it possible to work on it  on IDES system kavita