Sync problems using H.264 video in FCE timeline...please help!!!!

Okay. I'm reposting this question to see if anyone can help.
I'm shooting on a Panasonic HDC-HS700 and it's working fine. I use Aunsoft MTS Converter to convert to H.264 so that I can edit my footage in Final Cut Express. When I play back in the composer window, everything looks fine. BUT when I start putting clips in the timeline, the audio and video all out of sync and wacky. I will cut a clip in the composer but when I play it in the timeline the heads and tails are cut a few frames differently and the audio and video is out of sync. So basically, it's all fine in the composer but all messed up in the timeline.
What can I do to fix this? Should I try converting to a different format? Is this something that would not be a problem in Final Cut Pro??? Please give me any suggestions! I can also provide more information if that would help.

Hi -
What is the source footage from the camera?
If it is HD, then it needs to be converted to Apple Intermediate Codec at 29.97 FPS. The audio needs to be converted to 48Khz AIFF.
An excellent free convertor is MPEG Streamclip, which is available at
http://www.squared5.com/svideo/mpeg-streamclip-mac.html
H.264 is a acquisition and delivery codec, it is not suitable for editing in any past or current iteration of FCE or FCP. Attempting to edit in H.264 results in the problems you are currently experiencing - and many, many more.
MtD

Similar Messages

  • SOS problem using one Entity bean for editing records. please help me

    Hello
    I have one great problem using one entity bean 2.1 and i am working with this problem several days and i dont solve it.
    i am using this jb 2.1 for add new records to one oracle database and for editing records.
    I have one great problem for editing records
    I have one objets that is as one of my database table. (PersonaObj.java)
         //personaObj.java
         public class PersonaObj implements Serializable{
              private Integer id_persona; //this ishte database table autonumeric
              private java.lang.String nombre;
              now the set/get methods.
         One field of this objets (bean) is the primary key of the table, and this field is one part of the pk from the entity bean.
         From one session bean i call the entity bena passing the objet
         into the entity bean (interface) i have one methods:
              public getPersona getT56aaat04();
         public void setPersona(PersonaObj obj);
         into the entitybean bean i have:
         public PersonaEntityPK ejbCreate(PersonaObj obj) throws CreateException {
              this.setT56aaat04(obj);
              public abstract Integer getId_persona();
         public abstract void setId_persona(Integer Id_persona);
         public abstract java.lang.String getNombre();
         public abstract void setNombre(java.lang.String Nombre);
         public PersonaObj getPersona() {
              PersonaObj obj = new PersonaObj();
              obj.setId_persona(getId_persona());
              obj.setNombre(getNombre());
              return obj;
         public void setPersona(PersonaObj obj) {
              setId_persona(obj.getId_persona());
              setNombre(obj.getNombre());
    But i have one graet problem.
    adding new record to the database i runs well but if i want to edit one recor appears this error:
    => Error <=
    java.rmi.RemoteException: EJB Exception: ; nested exception is: javax.ejb.EJBException: EJB Exception: : java.lang.IllegalStateException:[EJB:010144]The setXXX method for a primary key field may only be called during ejbCreate.
    at PersonasEJB_a43o8n__WebLogic_CMP_RDBMS.setId_persona(PersonasEntityEJB_a43o8n__WebLogic_CMP_RDBMS.java:328)
    at PersonasEntityBean.setPersona(PersonasEntityBean.java:114)
    at PersonasEntityEJB_a43o8n_ELOImpl.setPersona(PersonasEntityEJB_a43o8n_ELOImpl.java:45)
    at PersonasSessionBean.editarPersona(PersonasSessionBean.java:849)
    at PersonasSessionBean_bszo9t_EOImpl.editarPersona(PersonasSessionBean_bszo9t_EOImpl.java:208)
    at PersonasSessionBean_bszo9t_EOImpl_WLSkel.invoke(Unknown Source)
    into the session bean i make this (the session recibes one PersonaObj obj):
    T56aContactosEntityLocal personaLocal ;
                   try {
                        personaLocal = personaHome.findByPrimaryKey(new T56aContactosEntityPK(obj.getId_a04()));
                        T56aaat04Obj objTmp = new T56aaat04Obj();
                        objTmp.setAp1_a04(obj.getAp1_a04());
                        objTmp.setEstado_a04("false");
                        personaLocal.setT56aaat04(obj);
    Please can you help me to solve this problem?

    Hello Werner,
    The mappings seem to be alright at a first glance.
    Have you tried out un- and redeploying your application? Sometimes values appear to be cached in the server. So if you have deployed the application before you entered DB_BANK as alias this might solve the problem...
    BR
    Daniel

  • Problem using java crypto class... Please help me

    Hi, i'm trying to do application that send information via socket, and i have to send the data encrypted,
    i`m trying to implemented the RC4 algorithm.... I read an article that said that the java sdk 1.4 has already
    implemented the securities classes. So I made this little program:
    import javax.crypto.spec.*;
    import javax.crypto.*;
    import java.security.*;
    import java.io.*;
    public class MicroRC4
    public void encriptaClavePublica(String trama)
    Cipher rc4Cipher;
    byte[] rc4KeyByte;
    SecretKey rc4Key;
    String keyStr;
    String messageEncryp;
    byte[] messageEncrypByte;
    rc4Key = null;
    messageEncryp = trama;
    // Clave para encriptar el mensaje
    keyStr = new String();
    keyStr = "12345678";
    rc4KeyByte = new byte[8];
    messageEncrypByte = new byte[255];
    for(int i=0; i < 8; i++)
    rc4KeyByte[i] = (byte)keyStr.charAt(i);
    try
    for(int i=0; i < messageEncryp.length(); i++)
    messageEncrypByte[i] = (byte)messageEncryp.charAt(i);
    rc4Key = (SecretKey)new SecretKeySpec(rc4KeyByte, "RC4");
    rc4Cipher = Cipher.getInstance("RC4");
    rc4Cipher.init(Cipher.ENCRYPT_MODE, rc4Key);
    byte[] result = null;
    result = rc4Cipher.doFinal(messageEncrypByte);
    System.out.println("Usage:"+result);
    catch(Exception e)
    System.out.println(" Error: " + e.getMessage());
    System.out.println("\n........................................\n");
    I don't know what is wrong but when i run the application it show me the following message :
    Error: Algorithm RC4 not available
    Does anybody know what is wrong ??
    Does anybody can help me ??
    or tell me when can i find some source code that implement de RC4 algorithm
    Thank's in advance..
    Alejandro.

    Hi Alejandro,
    In the ends i decided to implement the algorithm by
    myself, i did it... any way thank's again.... If
    anybody want to see the code, send me a mail......
    AlejandroCan I also get the source code? my email id is [email protected]
    Thanks a lot!
    Srik.

  • Can the author please send me an exported version using H.264 video codec

    Seems as thou I am having similar problems as other clients are having with movies. My computer guy asked me to ask you this question in the subject line. I have no idea what this means. I sent him a video, he has sound but no video, and he has tried multiple applications, but the results are the same. No video. So, I am suppose to ask the author to send you an exported version using H.264 video codec???? Please help get this resolved!

    So, you need to re-export it, this time choosing H.264. What software are you using?

  • Mp3 audio channel problems in h.264 video file

    I'm trying to encode an mp4/h.264 video file with an mp3 audio channel.  I'm tried encoding it with both Adobe Media Encoder and ffmpeg (using libmp3lame).  I'm streaming the video files using ffmpeg to stream the file through Red5 as a live stream.  When the Flex AIR clients play the stream (using the Spark VideoDisplay component), I hear a frequent sort of chirping sounding audio artifact.  I've also tried playing these files directly from my harddrive in a simple AIR app using NetStream and the Video component.  When I try this I don't hear any audio at all.  In both tests if I use an FLV (On2 VP6) file with an mp3 channel it sounds fine.  Unfortunately I need to use h.264 video.
    I've tried using AAC audio but am having a different issue with that:  http://forums.adobe.com/message/4096536
    Any ideas why I am seeing this audio artifact problem and how to resolve it?

    Most h.264 should work.
    Have you tried FILE/IMPORT MOVIE and then navigate to the h.264 file?
    If that does not work, but the h.264 will play in QuickTIme PLayer, then you can get MPEG Streamclip from Squared 5 (which is free). Drag the h.264 file into MPEG Streamclip. Then FILE/EXPORT TO QUICKTIME. Choose Apple Intermediate Codec for Compressions. You can use this file in iMovie by clicking FILE/IMPORT MOVIE.

  • I am using windows 7 and itunes 11.7 my i phone 5s is not getting synced with my laptop it keeps showing backing up  please help i need to put music in my phone?

    i am using windows 7 and itunes 11.7 my i phone 5s is not getting synced with my laptop it keeps showing backing up  please help i need to put music ?

    Hi,
    Have you managed to solve this problem? if yes, please highlight how you solved it...i'm facing same problem with my new Iphone 5S but udner Windows, thanks.

  • I have treated photos in final cut using effects. The problem is I can not export them. Please help me. Thank you-

    I have treated photos in final cut using effects. The problem is I can not export them. Please help me. Thank you-

    Ernest,
    This is how I do it: With all the video & still's in the time line, I click on each (even if I have to use the command key and click on each file). When each file is active I go under SHARE- go to EXPORT MEDIA- I use the Apple Pro Res codec 4:2:2. If you do not click on each file in the time line it will not be exported out.
    Hope this helps.

  • My iPhone 5 is not being recognized by my iMac.  All my other devices, including iPod and iPad are recognized with no sync problems.  I've tried every approach with online help as well as an Apple advisor by phone.  Help?

    My iPhone 5 is not being recognized by my iMac.  All my other devices, including iPod and iPad are recognized with no sync problems.  I've tried every approach with online help as well as an Apple advisor by phone.  Help?  Any other suggestions other than going to an Apple Store?

    Back to life**
    Oh I know there are many other vocabulary mistakes but never mind them I was just too excited when I wrote all of that while typing very quickly
    P.S: if you have any question then ask and please do tell me if it works or not with u but I'm definitely sure it'll work so tell me this and we'll get excited together
    Also if you have an experience to share then do share it as well please.
    Peace

  • Im having problem setting up my Hotmail account, it used to work fine until few days ago. It says ive entered an incorrect username or password which i can sign in fine with them details if i use laptop or safari through the phone, Please help..

    Im having problem setting up my Hotmail account, it used to work fine until few days ago. It says ive entered an incorrect username or password which i can sign in fine with them details if i use laptop or safari through the phone, Please help..

    I Sugges you to log into your hotmail acc and go to security and password change bit, then you will see two-step verification.. turn that off and you will be able to set it up on your iPhone/iPad or even Mac.
    Give your phone a restart before trying to set it up. Thanks

  • People Please help, I forgot my security questions answers but I know how to reset them but the problem is my rescue email is not longer used ( DELETED ) so what can I do please help me

    People Please help, I forgot my security questions answers but I know how to reset them but the problem is my rescue email is not longer used ( DELETED ) so what can I do please help me??????????

    EZZTHEKILLER wrote:
    is there any other way ...
    Not in your case.
    EZZTHEKILLER wrote:
    I forgot my security questions answers but I know how to reset them but the problem is my rescue email is not longer used ( DELETED )

  • Choppy video on big screens  PLEASE HELP!

    I've noticed that the videos that I have exported from CS3 are very smooth when played on a computer screen and average size tv screen, but are very choppy if played on a large TV or projected on the wall.  Is there a way to remedy this?  Please help!
    Drew.

    I think I figured out the issue.  Thanks for all your advice.  I'll repost if I have any other problems.
    Drew.
    Date: Wed, 24 Jun 2009 10:24:22 -0600
    From: [email protected]
    To: [email protected]
    Subject: Choppy video on big screens  PLEASE HELP!
    Drew,
    How is the large-screen projector connected, via a set-top DVD player to it, or by a computer connected to it? If it's via a set-top player, is it the same one used for the small-screen TV, or a different one? What is the make and model of the set-top player(s)?
    Also, what DVD media was used, and what was the burn speed used to create the DVD? Was this authored in Encore, or with some other authoring application?
    Good luck,
    Hunt
    >

  • Since upgrading to new version I do not know how to downloand and convert videos to DVD. Please help!

    Since updating to new vision of firefox I do not know know to download and convert videos to DVD. Please help!

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    * http://kb.mozillazine.org/Zoom_text_of_web_pages
    You can use one of these extensions to set a default font size and page zoom on web pages:
    * Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    * NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • My iphone 5s 16 gb has an camera problem, turn the camera on tap all green, please help me

    My iphone 5s 16 gb has an camera problem, turn the camera on tap all green, please help me

    Hi teejayfs,
    Thanks for visiting Apple Support Communities.
    If you've noticed unexpected behavior with your iPhone camera, start with these steps to isolate or resolve the issue:
    Camera isn't functioning or has undesired image quality
    If the screen shows a closed lens or black image, force quit the Camera app.
    If you do not see the Camera app on the Home screen, try searching for it in Spotlight. If the camera does not show up in the search, check to make sure that Restrictions are not turned on by tappingSettings > General > Restrictions.
    Ensure the camera lens is clean and free from any obstructions. Use a microfiber polishing cloth to clean the lens.
    Cases can interfere with the camera and the flash. Try gently cleaning the lens with a clean dry cloth or removing the case if you see image or color-quality issues with photos.
    Try turning iPhone off and then back on.
    Tap to focus the camera on the subject. The image may pulse or briefly go in and out of focus as it adjusts.
    Try to remain steady while focusing:
    Still images: Remain steady while taking the picture. If you move too far in any direction, the camera automatically refocuses to the center.
    Note: If you take a picture with iPhone turned sideways, it is automatically saved in landscape orientation.
    Video: Adjust focus before you begin recording. You can also tap to readjust focus while recording. Exiting the Camera application while recording will stop recording and will save the video to the Camera Roll.
    Note: Video-recording features are not available on original iPhone or iPhone 3G.
    If your iPhone has a front and rear camera, try switching between them to verify if the issue persists on both.
    You can find these steps here:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Regards,
    Jeremy

  • Unable to sync iMac address book with iPad. Can you please help?

    Unable to sync iMac address book with iPad. Can you please help?

    I have the same problem as Sheilaza but haven't been able to solve it using the advice offered.  The same problem applies to my Calendars. When I look at my iPad settings in iTunes, it says:
    Sync Contacts
    Your contacts are being synced with your iPad over the air from iCloud.
    Over-the-air sync settings can be changed on your iPad.
    and the same for Calendars.
    On the iPad, in iCloud settings, I have checked 'Contacts' and 'Calendars' as 'ON' but the Calendar remains blank and the Contacts are a very old version that was somehow created when I set up the iPad initially.
    Any ideas?
    Thanks.

  • May ipod touch can only recieved IMs. It can not call or recieve any video and audio calls, please help. thanks

    may ipod touch can only recieved IMs. It can not call or recieve any video and audio calls, please help. thanks

    Maybe try here:
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    What apps are you using?

Maybe you are looking for