P2 Footage Importing as white frame. Please help!

I know, I know. There's a million postings on this, but I haven't found one that addresses my problem exactly.
When I open the files in the Log and Transfer window, it won't let me play the clips in the preview window. Then, when I click to import, and it finishes, all I get is a white screen when I open it in FCP. Next to the files, in the L&T window is a half dark circle.
Two weeks ago, I edited a project using footage from the HVX and had no problem importing. Now, when I open THAT project, all I get are white screens and the error message:
"Codec not found. You may be using a compression type without the corresponding hardware card."
Now, again, I just used this computer two weeks ago to edit a project, so I'm wondering if it was a system or software update that is now effecting it.
I'm on FCO 6.0.6, on Leopard, running on Mac OS X 10.5.8 Intel Xeon, Quad Core with 8 GB of memory.
Please help!

Reinstall FCP. And the updates if needed. Sounds like some codecs went missing or went bad. for best results, run the FCS Remover, then install. ONLY the FCP application...
www.digitalrebellion.com.
Shane

Similar Messages

  • I made some amendments to my colour settings in PS CS5 and now everything prints black and white. Please help me to reset all the settings to default

    I made some amendments to my colour settings in PS CS5 and now everything prints black and white. Please help me to reset all the settings to default. This was after I tried to implement the steps set out in Real World Photoshop CS5. I stuggele to match the colours of my two screens, the one a laptop and the other a LCD and the printer, even after calibration with Spyder 3. Really lost at present.

    Tap Settings / Wi-Fi. Tap the blue circle with an arrow to the right of your network then tap: Forget This Network.
    Restart the iPad. Tap Settings / Wi-Fi. Tap the network name again then type in your password.
    If that didn't help, try here >  Apple - Support - iPad - Wi-Fi Assistant
    And try turning off your router for 5 minutes, then turn it back on. Try typing in the password again.

  • Hello, I have a big batterylife problem with my brand new iPod touch 4Gen 8GB white. Please help...

    Hello, I have a big batterylife problem with my brand new iPod touch 4Gen 8GB white. Please help?

    What battery life are you getting?  Is it short when you are using the iPod? When it is sleeping?

  • How do I get the pages to be another color other than white? I have my theme chosen but all the pages background are white! Please help.

    Please help me change the color of the pages in Firefox to be other than white. My hotmail page, my ebay page, my facebook pages are all white backgrounds. I have my theme chosen but the pages are still all white. How do I change this. Thanks, Laura

    There is an extension called NoSquint that might help.
    * https://addons.mozilla.org/en-US/firefox/addon/nosquint/
    After I got a 27" screen, I had problems with the interface text being too small as well. That can be fixed with Mozilla applications if you set up a userChrome.css file in the profile inside a subdirectory called chrome. The code I used:
    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    *{font-family: Trebuchet MS !important; font-size: 15px !important;}

  • Button to frame | button going back to the main frame (please help)

    these are the codes, by clicking the "FCFS" button it will generate another frame and from that frame another button will be pressed "accept" and it will go to another frame....
    my problem is that i nid to put codes on the "back" button to go back to the main frame were it started... please help me... thnks
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Oscon extends JFrame
         private JButton fcfsB, priorityB, sjfB, rrB, exitB, creditsB;
         private fcfsButtonHandler fbHandler;
         private priorityButtonHandler pbHandler;
         private sjfButtonHandler sbHandler;
         private rrButtonHandler rbHandler;
         private exitButtonHandler ebHandler;
         private creditsButtonHandler cbHandler;     
         public Oscon()// main frame
              fcfsB = new JButton ("FCFS");
              fbHandler = new fcfsButtonHandler();
              fcfsB.addActionListener(fbHandler);
              priorityB = new JButton ("PRIORITY");
              pbHandler = new priorityButtonHandler();
              priorityB.addActionListener(pbHandler);
              sjfB = new JButton ("SJF");
              sbHandler = new sjfButtonHandler();
              sjfB.addActionListener(sbHandler);
              rrB = new JButton ("RR");
              rbHandler = new rrButtonHandler();
              rrB.addActionListener(rbHandler);
              exitB = new JButton ("EXIT");
              ebHandler = new exitButtonHandler();
              exitB.addActionListener(ebHandler);
              creditsB = new JButton ("CREDITS");
              cbHandler = new creditsButtonHandler();
              creditsB.addActionListener(cbHandler);
              setTitle("CPU SCHEDULING");
              Container pane =getContentPane ();     
              pane.setLayout(new GridLayout(2,3));
              pane.add(fcfsB);
              pane.add(priorityB);
              pane.add(sjfB);
              pane.add(rrB);
              pane.add(exitB);
              pane.add(creditsB);
              setSize(500,100);
              setVisible(true);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
         public class fcfsButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   JFrame frame = new JFrame("FCFCS setting");
         final JLabel FCFSProcessL, FCFSp1L,FCFSp2L,FCFSp3L,FCFSp4L, FCFSbt;
              final JTextField FCFSp1TF,FCFSp2TF,FCFSp3TF,FCFSp4TF;
                        FCFSProcessL = new JLabel("PROCESS", SwingConstants.CENTER);
                        FCFSp1L     = new JLabel("P1:", SwingConstants.CENTER);
                        FCFSp2L     = new JLabel("P2:", SwingConstants.CENTER);
                        FCFSp3L     = new JLabel("P3:", SwingConstants.CENTER);
                        FCFSp4L     = new JLabel("P4:", SwingConstants.CENTER);
                        FCFSbt      = new JLabel("BT:", SwingConstants.CENTER);
                        FCFSp1TF= new JTextField (10);
                        FCFSp2TF= new JTextField (10);
                        FCFSp3TF= new JTextField (10);
                        FCFSp4TF= new JTextField (10);
                        JButton     FCFSokB = new JButton ("Accept");
                        FCFSokB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                                  JFrame frame2 = new JFrame("FCFCS");
                                  frame2.setSize(500,500);
                                  frame2.setVisible(true);
                                  frame2.setDefaultCloseOperation(EXIT_ON_CLOSE);
                                  JButton     FCFSclearB = new JButton ("clear");
                                  FCFSclearB.addActionListener(new ActionListener() {   
                                  public void actionPerformed(ActionEvent e)
                                  FCFSp1TF.setText("");
                                  FCFSp2TF.setText("");
                                  FCFSp3TF.setText("");
                                  FCFSp4TF.setText("");
                        JButton     FCFSBackB = new JButton ("Back");
                        FCFSBackB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                                  setTitle("CPU SCHEDULING");
                                  frame.setLayout(new GridLayout(7,2));
                                  frame.add(FCFSProcessL);
                                  frame.add(FCFSbt);
                                  frame.add(FCFSp1L);
                                  frame.add(FCFSp1TF);
                                  frame.add(FCFSp2L);
                                  frame.add(FCFSp2TF);
                                  frame.add(FCFSp3L);
                                  frame.add(FCFSp3TF);
                                  frame.add(FCFSp4L);
                                  frame.add(FCFSp4TF);
                                  frame.add(FCFSokB);
                                  frame.add(FCFSclearB);
                                  frame.add(FCFSBackB);
                                  frame.setSize(200,250);
                                  frame.setVisible(true);
                                  frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
         public class priorityButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
         public class sjfButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
         public class rrButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
         public class exitButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
         public class creditsButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
              public static void main (String [] args)
              Oscon O = new Oscon();
    }

    please help me revise my program, im almost done, i just nid to set the progress bar that it will run according to the waiting time, or set the progress bar to run in order.. these are the variable names of the progress bar(current1, then current2, then current3 then current4).
    i looked it up on the site and i cant really understand it... i just did the part where i included the progress bar to the interface. ijust want the 4 progress bars to run after clicking the accept button.... Please help me!!! its for my project and i didnt slept last night just working on this... i just nid help sir... thnks...
    these are the codes i made:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JProgressBar;
    public class CPUSched
              public CPUSched()
              JFrame frame = new JFrame();
                   JProgressBar current1, current2, current3, current4;
                   Thread runner;
                   int num = 0;
              final JLabel ProcessL, p1L,p2L,p3L,p4L, bt, prioL, tqL, wtL, awtL, awtLA;
                   final JTextField p1TF,p2TF,p3TF,p4TF, prio1TF, prio2TF,prio3TF,prio4TF, tqTF ;
                   final JLabel      blank1, blank2, blank3, blank4, blank5, blank6, blank7, blank8, blank9, blank10, blank11,
                                       blank12, blank13, blank14, blank15;
                   final JLabel     blank16, blank17, blank18, blank19, blank20, blank21, blank22, blank23, blank24, blank25,
                                       blank26, blank27, blank28, blank29, blank30;
                   current1 = new JProgressBar(0, 2000);
                   current1.setValue(0);
         current1.setStringPainted(true);
                   current2 = new JProgressBar(0, 2000);
                   current2.setValue(0);
         current2.setStringPainted(true);
                   current3= new JProgressBar(0, 2000);
                   current3.setValue(0);
         current3.setStringPainted(true);
                   current4 = new JProgressBar(0, 2000);
                   current4.setValue(0);
         current4.setStringPainted(true);
                        ProcessL = new JLabel("PROCESS", SwingConstants.CENTER);
                        p1L     = new JLabel("P1:", SwingConstants.CENTER);
                        p2L     = new JLabel("P2:", SwingConstants.CENTER);
                        p3L     = new JLabel("P3:", SwingConstants.CENTER);
                        p4L     = new JLabel("P4:", SwingConstants.CENTER);
                        bt      = new JLabel("Burst Time:", SwingConstants.CENTER);
                        prioL= new JLabel("Priority (1-4):", SwingConstants.CENTER);
                        tqL= new JLabel("Time Quantum:", SwingConstants.CENTER);
                        wtL= new JLabel("Waiting time:", SwingConstants.CENTER);
                        awtL= new JLabel("Average Waiting time:");
                        awtLA= new JLabel("");
                        blank1= new JLabel("");
                        blank2= new JLabel("");
                        blank3= new JLabel("" ,SwingConstants.CENTER);
                        blank4= new JLabel("");
                        blank5= new JLabel("", SwingConstants.CENTER);
                        blank6= new JLabel("");
                        blank7= new JLabel("");
                        blank8= new JLabel("" ,SwingConstants.CENTER);
                        blank9= new JLabel("");
                        blank10= new JLabel("");
                        blank11= new JLabel("", SwingConstants.CENTER);
                        blank12= new JLabel("");
                        blank13= new JLabel("");
                        blank14= new JLabel("");
                        blank15= new JLabel("");
                        blank16= new JLabel("");
                        blank17= new JLabel("");
                        blank18= new JLabel("");
                        blank19= new JLabel("");
                        blank20= new JLabel("");
                        blank21= new JLabel("");
                        blank22= new JLabel("");
                        blank23= new JLabel("");
                        blank24= new JLabel("");
                        blank25= new JLabel("");
                        blank26= new JLabel("");
                        blank27= new JLabel("");
                        blank28= new JLabel("");
                        blank29= new JLabel("");
                        blank30= new JLabel("");
                        p1TF= new JTextField (2);
                        p2TF= new JTextField (2);
                        p3TF= new JTextField (2);
                        p4TF= new JTextField (2);
                        prio1TF= new JTextField (2);
                        prio2TF= new JTextField (2);
                        prio3TF= new JTextField (2);
                        prio4TF= new JTextField (2);
                        tqTF= new JTextField (2);
                             prio1TF.setEditable(false);
                             prio2TF.setEditable(false);
                             prio3TF.setEditable(false);
                             prio4TF.setEditable(false);
                             tqTF.setEditable(false);
                        JButton     okB = new JButton ("Accept");
                        okB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                             double iw=0, wtp1, wtp2, wtp3, wtp4;
                             double bt1, bt2, bt3, bt4;
                             double averageWT, sumWT;
                             bt1=Double.parseDouble(p1TF.getText());
                             bt2=Double.parseDouble(p2TF.getText());
                             bt3=Double.parseDouble(p3TF.getText());
                             bt4=Double.parseDouble(p4TF.getText());
                             wtp1 = iw;
                             wtp2 = wtp1+bt1;
                             wtp3 = wtp2+bt2;
                             wtp4 = wtp3+bt3;
                             sumWT = wtp1+wtp2+wtp3+wtp4;
                             averageWT = sumWT/4;
                             awtLA.setText(""+averageWT);
                             blank3.setText(""+wtp1);
                             blank5.setText(""+wtp2);
                             blank8.setText(""+wtp3);
                             blank11.setText(""+wtp4);
                        JButton     clearB = new JButton ("Clear");
                        clearB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                                  p1TF.setText("");
                                  p2TF.setText("");
                                  p3TF.setText("");
                                  p4TF.setText("");
                             awtLA.setText("");
                             blank3.setText("");
                             blank5.setText("");
                             blank8.setText("");
                             blank11.setText("");
                             frame.setTitle("First Come First Serve");
                                  frame.setLayout(new GridLayout(6,6));
                                  frame.add(ProcessL);
                                  frame.add(blank1);
                                  frame.add(wtL);
                                  frame.add(bt);
                                  frame.add(prioL);
                                  frame.add(tqL);
                                  frame.add(p1L);
                                  frame.add(current1);
                                  frame.add(blank3);                              
                                  frame.add(p1TF);
                                  frame.add(prio1TF);
                                  frame.add(tqTF);
                                  frame.add(p2L);
                                  frame.add(current2);
                                  frame.add(blank5);
                                  frame.add(p2TF);
                                  frame.add(prio2TF);
                                  frame.add(blank6);
                                  frame.add(p3L);
                                  frame.add(current3);
                                  frame.add(blank8);
                                  frame.add(p3TF);
                                  frame.add(prio3TF);
                                  frame.add(blank9);
                                  frame.add(p4L);
                                  frame.add(current4);
                                  frame.add(blank11);
                                  frame.add(p4TF);
                                  frame.add(prio4TF);
                                  frame.add(blank12);
                                  frame.add(blank13);
                                  frame.add(blank14);
                                  frame.add(okB);
                                  frame.add(clearB);
                                  frame.add(awtL);
                                  frame.add(awtLA);
                                  frame.setSize(800,200);
                                  frame.setVisible(true);
                                  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public static void main (String [] args)
              CPUSched O = new CPUSched();
    }

  • The display used to flicker, now it's completely white! PLease HELP!

    So, my display used to flicker with horizontal lines all over it, and slightly adjusting the angle of opening would fix this, but about a week ago it lightened a few times, then got stuck being really light with the desktop being barely visible, though better from way down angle (if you open it all the way out) and looking like a negative from the way up angle. I restarted it, and the problem persisted. I shut it down for a day, and, upon startup, the screen is now completely white with nothing visible on it. I had connected the PB to my tv using the s-video out jack on the back and I can see the desktop clearly on it, but it's extremely difficult to read any text, largely due to my tv being big and not hi-def. So far I had tried fixing or diagnosing it by switching resolutions and calibration in the "display" area of System prefs and also in universal access "seeing" tab, I've reset the PMU and still nothing. Here's what's going on: if I start visualizer on the iTunes, both the TV and the stock display flicker to black, then the TV does the visualizer thingy and the display goes back to white. The apple logo backlight is on no problem at all times as well. The laptop was never dropped, handled roughly or subjected to extreme temps. The flickering problem had first appeared when I had relized that I only had about a minute for the battery to go completely empty (my 'puter is almost 3 years old). The recall for the displays covers laptops manufactured about 2 months after mine, otherwise all the symtoms listed in the recall match. Does anyone know what I should do next? I had read about getting a new LCD inverter, but at the same time I am now unemployed and really have no dough.... I'm a sound engineer, and I need my PB to be mobile. The only thing that had happened recently is that I installed the newer version of Pro Tools on my machine, LE 6.9. Please HELP!
    PB G4 Ti   Mac OS X (10.3.9)  

    You might have to restore the pictures from your ""backup" you have on iCloud. But, then again, that would put your iPhone back to the last state it was in when doing that backup. But at least you would have all your pictures back.
    iin any case, I wouldn't do any further backups or any changes to your iCloud account, until you've got your pictures back again. Proceed cautiously and carefully at this point, until you get an answer that will safely restore the pictures.

  • Import option not working - please help

    Hi
    I have MacBook Pro Retina 15 inch Early 2013. I use Motion (latest update 5.1.2) to convert my photo sequences to video files (time lapse). After importing first sequence I can export it with no problem. When I try to use Import option again nothing happens. I can see the cursor disappearing for a millisecond but import window is not showing at all and nothing happens. I have to restart Motion to import another file/photo sequence. Very frustrating and makes working in Motion impossible.
    I noticed that this started to happen after I changed screen resolution so DaVinci Resolve could fit on the screen. I had it changed for one day and then went back to Default for Display option.
    Please help anyone.
    Regards
    Marcin

    The problem I described was that the import window was not showing at all after hitting import option (either from menu or by shortcut).
    For anyone in the future - I deleted Motion completely from my system and installed it again. Worked out for me.

  • Cannot Import javax.swing.JOptionPane   Please HELP!!!

    import javax.swing.JOptionPane;
    this line of code returns the error:
    C:\Java Files\BankAccount\BankAccount_Test.java:1: Class javax.swing.JOptionPane not found in import.
    import javax.swing.JOptionPane;
    ^
    1 error
    Process completed.
    Please help, I don't know what the problem could be....

    Swing was not part of any JDK's earlier than 1.2. Swing (or anything with a J in front of it, ie. JFrame, JOptionPane, etc...) was probably the most dramatic (if not largest) modification/addition to the Java language, that's why versions later than, and including, 1.2 are known as "Java 2".

  • Xml import error in itunes - please help

    So I had to restore my computer to factory settings.  Before I did that I read that I can save my thousands of itunes song ratings by creating a smart playlist for each rating and exporting them to xml. 
    I've since restored my computer and have added all of my music from my external to iTunes.  When I try to import the xml files I've saved I'm getting the followging message 'Some of the songs in the file were not imported because they could not be found'. 
    Does anyone have any idea what I'm doing wrong?  My music was always on my external hardd rive even before the restore and my path in itunes is conneted to my external.  I have no idea what to do and am dreading the idea of rating thousands of songs all over again.
    Please help!

    Hi iamabeefcake,
    The article below has troubleshooting steps that may address your issue with xml files:
    iTunes: How to re-create your iTunes library and playlists
    I hope this information helps ...
    - Judy

  • With green chroma concept, I removed the green background, now the green background is seen black. I don't want to have any other background clip, but I would like to change the background black to white. Please help me.

    With green chroma concept, I removed the green background.  Now the green background is seen black. I don't want to have any other background clip, but I would like to change the background black to white. Same like the advertisement clip in the Apple Website.  Please help me.

    If you want the whole of the project background to be white, you can change the colour in FCP X preferences.
    If you just want white for a section or clip, use a custom Generator from the Generators Library and change it to white in the Inspector.
    Andy

  • Premiere cc only importing audio .mov file, please help

    My friend sent me an .mov file, he has a mac I have a PC, when I import it to premiere cc, there is only sound. I can see the video on VLC player. I am not very technical. Please help!!! Any suggestions? thank you

    MOV is a wrapper, what is inside YOUR wrapper - Exactly what is INSIDE the video you are editing?
    Codec & Format information, with 2 links inside for you to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download

  • IPhone 4S will not sync to new rebooted hard drive on Macbook (13-inch, white). Please help.

    I've recently had to purchase/install a new hard drive for my Macbook (white 13-inch). Everything on my original hard drive was lost. So once I tried to sync my iPhone 4S to it, iTunes does not give me the option to "sync iPhone." I have logged into my Apple account ID and did authorize my account on that iTunes, but it does not let me sync any of my music, contacts, iCal & photos onto my laptop. Could anyone please help me with this problem?

    You need to restore the backup of your old hard drive to the new one. The iPhone is not a backup device, and syncing iTunes content is one way, from computer to iPhone. If you don't have a backup there is an alternative process that can get most of the data off of your iPhone, but it is complicated and cumbersome. See: Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • My Macbook Pro (2011) freezes after the apple login logo appears. The screen just goes white. Please Help

    When i start up the laptop, its proceeds normally with the chime and apple logo, but after that the screen goes white and nothing happens. You can hear the sound from within the machine become louder too.. Sometimes it proceeds to login fully but then there are times that it freezes whilst i am using it. It is currently working now as im typing this.. Please help

    I would first try booting into Safe Mode then restarting normally. This will be a longer startup than normal in both safe mode and normal boot. That is normal.
    I would then repair your drive and permissions:
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    If the problem is not resolved, then create a new admin user account. Set this account for auto-login. Then try restarting the computer.

  • Importing OLD black and white videotape - please help!

    Hello!
    I have imported many VHS tapes with a setup that includes iMovie HD '06 and a sony miniDV camera set to pass-through video. Quality of course limited by VHS tape source but problem importing a black and white VHS tape has me stumped. The black and white tape was actually dubbed years ago from reel-to-reel sony videotape, though I don't think that should matter:
    Tape is a high-contrast outdoor scene and occasionally when less contrasted imported picture is watchable but mostly plagued by bands of light and dark. The really weird thing is that simultaneously with importing footage with the contrast bands the TV hooked up to the VCR shows a good, watchable picture! Something in the conversion must be astray - though same setup works fine for color (and in fact imports TV channel that VCR is set to when tape is not playing). I have a feeling that this is problem with some compensatory mechanism in camera that attempts to dampen the contrast and overcompensates - sort of like Macrovision works (my limited understanding of it, anyway!). Importantly, the picture on the camcorder shows the same artifacts. Anyone with any ideas? Would getting an S-Video player help (I couldn't find one a while back when I bought this VCR for dubbing purposes)? Any help appreciated! -Bob

    It may be that your "black and white" tape is a copy of a tape of another TV system, e.g; it's a PAL recording of a French SECAM tape, or it's a US NTSC tape.
    In other words, because it's a copy of an original of a different system, the colour information isn't reproducible.
    iMovie may thus be confused about what it's supposed to be importing.
    This is suggested because you say that "..the TV hooked up to the VCR shows a good, watchable picture!.." ..If it's a multi-standard TV which can display PAL, SECAM and NTSC, and it's a multi-standard VCR, then it may be showing you a reasonable copy of the original, but iMovie isn't automatically multi-standard (..you have to choose PAL or NTSC when starting a project..) and so it's caught between two systems. Why not see if you get any better result by changing the default standard (PAL or NTSC; 25fps or 30fps) and then starting a new project?
    If you're in Euro-PAL land, and you can manage to find and borrow an NTSC player, and import through an NTSC camcorder (..or the other way round, depending on where you are..) you might see if that can play the tape correctly.

  • I cannot figure out how to edit my h.264 footage in Premiere Pro. Please help.

    I have been trying to import AVI video into Premiere pro CS5. I have a new Dell Laptop with Windows 7. Every time I try to import the video into Premiere it only shows up as audio files. However, Windows Media Player plays the files just fine. I've tryed converting the files with Media Encoder but that sees the files as only audio files as well. I've used the G Spot program and it tells me that the Codec is the H264 codec and that the name is H.264/MPEG-4 AVC. It also tells me that the codec is already installed on my computer.
    I've had problems trying to edit h.264 stuff for longer than I'd care to admit and I just want to figure it out once and for all. Any help would be greatly appreciated.
    Thanks.

    Read the 2nd post for NEW ITEM pointer http://forums.adobe.com/thread/770072?tstart=0 and follow the instructions, to let PPro analyze the file for you
    This is not going to help in the OP's circumstance; if the video doesn't play in Premiere, it's not going to magically start playing once dropped on the New Item button. That sets up a sequence with parameters that match the footage (is that what you mean by letting "PPro analyze the file?"), but Premiere is pretty black-or-white when it comes to format/codec support--it plays everywhere or it doesn't play at all.
    If that were not true, DV footage would have to be edited only in a DV sequence, and AVCHD only in an AVCHD sequence. Of couse, that's not the case--sequences are format-agnostic.

Maybe you are looking for

  • Creating a folder for a document library in SharePoint online

    Hello I am looking for a good place to get started on creating a folder for a document library using a powershell script. Thanks in advance for any help.

  • DMVPN Performance vs Latency best practice

    I am currently investigating an issue which I find rather difficult to "catch" and find information about. We are running a DMVPN environment based on 2951 HUB routers & 1941 Spoke routers all over the globe (20 locations). HUB routers are connected

  • I need help with this error message.

    The error message I can't figure out is: ORA-06550: line 1, column 127: PL/SQL: ORA-01741: illegal zero-length identifier ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored Error Unable to process row of table PROJ-MAN-TABLE-02. This happens

  • Cache Engine 510

    Hi , We have purchased a cache engine 510 and are going to be deploying it in a transparent caching scenario. Where is the optimal place to put the cache engine, on the inside network behind firewall or on outside. If placed on the outside of the fir

  • Go back option in OBIEE gives the selected Proj num

    Hi, We have a report PAGE 1 where we have multiple project numbers. clicking on one of them navigates us to a diffrent page PAGE 2 giving detaild info based on that project. we have provided a link on PAGE 2 which takes us to the PAGE1 on that dashbo