Corupt Project File

I have a Final Cut Pro 5 project file that won't open because it is corrupt. what is the best way to get around this so I could get it open and copy it to another project. Thanks

Joshua,
It took one time of this happening to me (after hearing the advice from others - stupid me) to start saving a copy of my project to a separate drive after each editing session or more often. I set my auto save to 15 minutes also.
It's a lousy feeling, I know. I should have listened. But I'm rock solid now and haven't had a problem since. I know, however that I've got two current/near-current backups (autosave and my extra copy on another drive). I can breathe easier now.
Good luck!
Brad

Similar Messages

  • My premiere project file size just went from 190MB to 5.61GB... and now it won't open! Anyone know how this happened?

    My premiere project file size just went from 190MB to 5.61GB... and now it won't open! Anyone know how this happened? Or how to prevent it from happening again? Thankfully I saved a backup project of the 190MB file size.

    warp stabiliser?

  • Using iMovie to save project files to external hard drive?

    I have a MacBook Pro with very limited space on the internal hard disk drive. I also have a few FireWire external hard drives.
    A friend recently gave me his Hitachi DZ-HS300A mini-DVD camcorder so I could copy footage off of it, load it into my machine, edit it and upload it (several minutes) to YouTube. He can't do this because he lives in a remote area where there is no broadband yet.
    I almost never use iMovie. I was wondering if there is a way to save the project file to an external FireWire drive so that there will be no large video files clogging up my laptop's internal hard drive. Can this be done? Is there an iMove preference I have to change?

    You should generally leave the iMovie Project file on the boot drive. The Project File is mainly a small text file with in and out points.
    The iMovie Event file is where the video assets are stored. You can store events to an external hard drive in two ways:
    1) As you import from the camera, you will see an import screen. You can select the external drive on the import screen
    2) If the event is already on your internal drive, you can click View/Events By Volume. Now you can drag and drop the event to the external drive in the Events SOurce List in iMovie.
    For your external drive to be visible to iMovie, it must be formatted HFS+ or HFS+ (journalled).

  • "Unable to open project file" Error Message

    I pulled an all-nighter (13 hours of editing) last night to create a critical project in FCE 3.5.1 on my Intel iMac running 10.4.11 then left this afternoon for a few hours and shut down my machine. Came back tonight and tried to open the project (which I saved on my Maxtor 1 TB external drive along with all of the scratch disk files). To my absolute panic, it won't open the file now with an error message that simply says, "Unable to open project file". HELP!!!! Anyone have any suggestions?!?!

    In the past I found (and reported to Apple Feedback) the same bug Steve reports here, but I should recall that the problem:
    - only appeared in PAL projects (probably not the case for kscritch) - never heard of it in NTSC
    - was consistent in FCE 3.x, not so in FCE 4
    I made tests importing .psd images with transparency into PAL projects using FCE 4, and I had various behaviours: sometimes the project worked, sometimes I couldn't open the project again (as in FCE 3), sometimes I had error messages with inconsistent behaviour (msg like "file error", but the project opened and file was there...), etc. so I decided to do without.
    Now I only import .tif or .png images when I need transparency
    Piero

  • "Unable to Open Project File" - error

    Does anyone know how to resolve an "Unable to Open Project File" - error. I accidentally shut down my computer wrong, although Final Cut wasn't open.

    Welcome to the forums.
    The project file might have gotten corrupted. Look for the AUTOSAVE VAULT (typically in the DOCUMENTS>FINAL CUT PRO DOCUMENTS folder) and open the most recent version. Copy it to your main project folder if it works.
    If not, then try trashing your prefs with FCP Rescue.
    Shane

  • Error reading project file : no protocol

    I have followed the instructions exactly as in the j2ee tutiorial ,but, when I run asant , an error occurs:
    : Error reading project file : no protocol: ../../common/targets.xml
    Urgent!

    Could you please provide a bit more detail such as which sample you are using? Also are you using the latest version of the tutorial and have you configured your build.properties in the samples/common directory?

  • Using a JAR file as a project file

    My application allows the user to create projects. Previously, a project file was simply an XML file. Now, a project file needs to also contain many images.
    I thought it would be a good idea to simply use a JAR file as my project file.
    Since I've really never really worked with JAR files and the java.util.Jar package directly, I have a few questions.
    1) Would it be better just to simply store the images as binary in the XML file? I just spent a good amount of time making the XML file very readable so I thought it would be better to keep the images separate while still having a single "project" file.
    2) Is there anything inherently wrong with the way I'm working with the JAR file in the code below?
    Simple XML file:
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE project [
      <!ELEMENT project (img+)>
      <!ELEMENT img EMPTY>
      <!ATTLIST img src CDATA #REQUIRED>
    ]>
    <project>
         <img src="blah.jpg"/>
    </project>
    import java.io.*;
    import java.util.jar.JarFile;
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.DefaultHandler;
    public class LoaderTest {
        private String imageName;
        public LoaderTest() {
            InputStream i = null;
            JarFile jf = null;
            try {
                jf = new JarFile("project.jar");
                i = jf.getInputStream(jf.getJarEntry("project.xml"));
                // Here's my simple XML parser to load the project and images
                SAXParser parser = SAXParserFactory.newInstance().newSAXParser();
                parser.parse(new InputSource(i), new DefaultHandler() {
                    @Override
                    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
                        // Right now we only care about images
                        if (qName.equalsIgnoreCase("img")) {
                            imageName = attributes.getValue("src");
                // Load the image from the inputstream
                java.awt.image.BufferedImage img = javax.imageio.ImageIO.read(jf.getInputStream(jf.getJarEntry(imageName)));
                // Display the image in a JFrame
                javax.swing.JFrame f = new javax.swing.JFrame();
                f.setLayout(new java.awt.BorderLayout());
                f.setSize(800, 600);
                f.getContentPane().add(new javax.swing.JLabel(new javax.swing.ImageIcon(img)), java.awt.BorderLayout.CENTER);
                f.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
                f.setVisible(true);
            } catch (ParserConfigurationException ex) {
                ex.printStackTrace();
            } catch (SAXException ex) {
                ex.printStackTrace();
            } catch (IOException ex) {
                ex.printStackTrace();
            } finally {
                // Do our best to close the input streams
                if (i != null) {
                    try {
                        i.close();
                    } catch (IOException ex) {}
                if (jf != null) {
                    try {
                        jf.close();
                    } catch (IOException ex) {}
        public static void main(String[] args) {
            new LoaderTest();
    }Thank you!

    1) I also think it's much better to keep your images separate from your XML, this prevents a lot of in case you just want to read XML data
    2) What's exactly going wrong here? For the project.xml, make sure it's not inside a directory within the JAR file, or else the variable i will be null. Otherwise it looks fine..

  • I was working on a project a few days ago and now I'm not getting any audio or visuals out of it. In the project file the screen went grey. Not sure how to fix this. I'm new to iMovie, but the program seems easy to use and my Mac is new. Any help?

    I used to use Movie Maker and it would be able to handle lots of file uploads and big projects. I figure iMovie can do the same since it's newer and it's on my iMac. I was working on a project for a few months, it was working fine up until about a few days ago when the project file just stopped working. Not getting any audio or visuals and the screen went grey. I hope to not lose the project file as I've spent a lot of time on it. The project will still show up in iMovie, but it won't play. Other project files will, but this one won't for some reason. It's my first time using this program and I assumed it would be fine, but now it's causing me big problems. Anyone else run into a similar problem?

    But it is I jsut can sync, back up files, or anything becuase its stuck at this screene and wont do execute when i click either of those button

  • Need help badly. project file wont open. saying damaged file or may contain outdated elements. please help

    project file wont open. damaged file or contains outdated elements message. i believe its an XML error but i dont know how to fix it. please help

    As a happy user of the Matrox RT.X2 for many years, and later an equally happy user of a Matrox MXO2, I can say from experience that it is highly unlikely that this problem has anything to do with the Matrox hardware!
    Can you open a new blank project, and save it?
    If you cannot import your faulty project into a new project, can you import the sequence from your faulty project?
    Have you tried clearing the Media Cache, clearing your preferences, etc. - all among the techniques used to resurrect a Premiere Pro project that has gone bad???

  • How to change default value in "Project file" dialog

    I'm new to Labview, and I've encountered an example with a dialog that allows to define a path to a file.  If I open the properties on the block diagram of this block the name of the block appears to be "Path Properties: Project file:"   The default value points to a different place than where the file installed and the VI won't run untiI I change the path.  If I save and open the file, it doesn't remember the change.  When the vi is running I can right click the text and there is an option to reinitialize to default.  I've rooted around all over the place and can't find where this can be set or changed.  How do I change this? 

    On the front panel, change the control to the desired value.
    Now, right click on the control, select Data Operations and Make Current Value Default.
    -Matt Bradley
    ************ kudos always appreciated, but only when deserved **************************

  • Any way to prevent dupes in Premiere Project file?

    Due to working with both PluralEyes as well as multiple editors on the same project, I deal with importing a lot of XML and PRPROJ files into existing project files that I've worked with.
    This, on a large scale, becomes untenable because every time I import another editor's work or a synced sequence, I get duplicates of all my media in the project. I'm trying to figure out if there any way to have Premiere check to see if the media is already imported, and reference that media in the imported sequence? If not, I will just keep getting larger and larger project files with multiple references to the same media, because both me and my other editors are working with the same media, but for different sequences.
    As far as I can tell, when you import an XML, or even a sequence from another Premiere project, it creates new master clips for every clip used in the imported sequence. It does not recognize that you may already have a master clip that you're using in another sequence that is referring to the same media.
    So if you want to keep both sequences in your project, you need to keep both master clips. If you delete a master clip from your bin, it will not stay in the sequence(s) that refer to it, it will get cut out, leaving a big steaming crater where it once was. Even if the sequence is not currently open. This is one of the things I loved about FCP7. You could delete every single one of your master clips and your sequence would be totally unaffected. You could even recreate the master clips by dragging them from your sequence to the bin.
    I think if there really is no way to manage these duplicates, this is a HUGE problem for professionals who are working in environments with multiple editors. This isn't just a "well, learn how to deal with a new editing system" - this is actually a deal-breaker; and actually the only one that I see REALLY preventing Premiere from being the go-to choice for larger post houses. This problem becomes so big so fast that it makes true collaborative editing downright impossible. In my office we might have three people on a project, all editing and revising segments and passing them back and forth. On FCP7 this was easy as pie - we'd just cut and paste between project files and use basic versioning best practices. In Premiere, our project files quickly become nightmares and work is often inadvertently deleted or lost.
    I would like to see:
    - Smart media handling when importing sequences and projects. Premiere should look at the filenames and file location and attempt to relink any duplicate media. If it stumbles, it should ask for help like FCP.
    - A media consolidation inspection feature. I'd love to see an option for inspecting your project for duplicate media references. When found, Premiere should automatically consolidate.
    - Streamlined sequence exporting. You should be able to export a single sequence. I know there's some version of this in Project Manager, but we all know it should be easier than this!
    Anyone have any ideas on how to fix this?

    *******Enhancement / FMR*********
    Brief title for your desired feature:
    Link Master Clips to media on drives, not to sequences.
    How would you like the feature to work?
    "The selection you are deleting contains clip references in one or more sequences. If you continue these clip references will all be deleted. Do you want to continue?"  In short, I never want to see this warning again. I *need* to be able to delete master clips from my project without having media deleted out of sequences.
    Why is this feature important to you?
    Editors need to stay organized from the beginning. Professional editors don’t edit birthday parties; we often have large quantities of different kinds of media, need to know where it is, need to access it quickly, and don’t need unnecessary things in the way.
    Organization exists in one place: the project panel.  The less that’s in the project panel, the smaller the project file size is, the faster the project file opens, closes and saves, but most importantly: the easier it is to find what you need, fast.
    The reasons for working in multiple project files are endless. When you import a seq from another project, you also get the clips used in it. Often times these clips are already present in the project, which is why you now include a “don’t allow duplicates” checkbox in your import dialogue box (which btw doesn’t work when we’re working with Merged Clips painstakingly built in other project files).
    While you might fix that Merged Clips bug, I still don’t know why you won’t just let me clean stuff up myself. Why are you trying to save me from myself? I know where my media is and Premiere knows where my media is: on my drive.
    A professional editing program should not try to save people from themselves. It’s why I left FCP for you. You have a great, powerful suite of programs (that I’d pay a lot more for than I do now btw)… but I need to stay organized, not be unnecessarily prevented from doing so.
    Please listen to us and make this fix.

  • Can't open Zend Project files using Zend Studio

    Hi there,
    I've been in contact with Zend about this issue but they assure me that they don't have this problem with their Mac's and no other Mac user has reported this fault.
    So here I am asking in the only other logical place I can think of.
    Basically I want to double click on a Zend Project File (.zpf) and have it open in Zend Studio.
    The first time I tried setting the desired application to ZDE.app it came up with an unknown error I think it was -10814? And each subsequent time I try to open the project file I get Zend Studio telling me it is an unrecognized file type.
    If you could give me any suggestions or leads to follow I would greatly appreciate it.
    Thank you for your time,
    Ant

    HI webchalk and Welcome to Apple Discussions ...
    Ok, when you say you tried setting the desired application to ZDE.app ... have you tried this?
    To open a document with a specific application:
    In the Finder, select the document and choose File > Get Info.
    In the Info window, click to show the "Open with" pane.
    Choose the application you want to use from the pop-up menu.
    If you want all documents that have the same file type as this one to open with the same application, click Change All.
    Carolyn

  • Error Can't open project file

    Was working fine on a project. Closed the project tried to access it again got this error message.
    Error Cant open project file: {0}
    The project is there when I check in windows explorer. Can anyone help? I have a back up so I am able to continue working but I am concerned has to how this may have happened.
    Regards
    Betty

    Hi Betty,
    The application bean might have gotten saved inadvertantly with an unnoticed / unintended change after you copied the code from it. Its a slim chance but could have just happened. If by chance it was so, then the IDE would have had difficulty in recognizing the file as a result of which that error was thrown.
    In case you are sure the file was not modified could you please provide us the steps to reproduce the problem.
    Cheers
    Giri :-)
    Creator Team

  • Error: Cannot open project file

    Does that error message mean I am trying to open a project file that was created with a version of FCP that is later than what I operate with?
    Also, where did the FCP FAQ section go?
    PowerMac G4 desky 867MHz 1GB RAM   Mac OS X (10.2.x)   FCP 3.0.4

    Are you trying to open a project created by a later version? (using FCP 4.5 to open a project created in FCP 5 for example)
    If so, it can't ge done. The best you can do is export an XML of the cut (only the cut) that the previous version can then import.
    #27 Getting a FCP 5 project to open in FCP 4.5
    Shane's Stock Answer #27: How do I export my FCP 5 project so that someone can work with it in FCP 4.5?
    Final Cut Pro 5 projects are not backwards compatible. What that means is that a project created in FCP 5 cannot be opened by previous versions. The previous version cannot recognize the formatting and code of the newer version. You can go from FCP 4.5 5o 5, but it will reformat your project file, so if you want to have a 4.5 version best to duplicate it and convert the duplicate.
    You can, however, export the sequence from FCP 5 so that it will open in FCP 4.5 if you follow these steps:
    1) Select all in the Browser
    2) Choose File>Export>XML
    3) Make sure you choose XML version 1 in the following dialog box
    4) Launch FCP4.5 and create a new project
    5) With that project's Browser open and active, import the XML
    For an in-depth explaination, read this:
    http://www.lafcpug.org/Tutorials/basicfcp5_to4.html
    Shane

  • Upgrade to Robohelp 9: Your project file cpd is corrupt

    Hi
    I have installed Robohelp 9, and is now trying to upgrade a version 6 project to version 9. When I press upgrade in Robohelp, I keep getting the error "Your project file ...cpd is corrupt and cannot be opened". I have tried to delete it and open the xpj-file again, but there is no difference. Then I found something about a file called rhvariable.apj. I copied this file from a project that I already have upgraded and which were fine. But this gave no solution either. I also read something about deleting the cpd-file and the xpj-file and then edit the hhp-file. The problem is that my corrupt projects - I have 3 at this point - have no hhp-file. So there is a difference.
    Could anyone help me? I have search and search
    Best regards
    Else

    In case this helps anyone I will share my experience...
    I've been waiting ages for the purchase order to go through for my new license for the latest version of RoboHelp.  My Help project was in version 6.  I had on one PC a trial download of RH 8 and on my other PC a trial download of version 9.  (I work in IT hence the multiple PCs)
    So, just a couple of days ago, I tried bringing in my v.6 project into v.9.  I got the cpd file corrupt error and I tried deleting it several times.  I even tried re-copying it in, etc.  Nothing worked.  I was annoyed....so just to try something I opened up my trial v.8 and loaded in my old project and it upgraded fine with no problems.  I took this upgraded project and brought it into v.9 and, lo and behold, it worked!  (Both being trial versions and just yesterday I got my v. 9 license key and registered with no issues)
    I am up and running and everything looks great and I've generated and started playing around with all of the new features I am unfamiliar with...having been stuck with v.6 for so long!
    Hope this helps someone....
    thanks,
    liz

Maybe you are looking for

  • Songs on the ipod cannot be updated???

    Ive had my nano for awhile and it worked with iTunes. recently i must have done something i shouldnt cause everytime i try to update my ipod i get this message "Songs on the iPod "Chris's iPod" cannot be updated because all of the playlists selected

  • In need of a constant

    I have a composite project. Basically one big .dacpac surrounded with four smaller .dacpacs set up with different collations and a handful of user defined functions not found in the main .dacpac. Even though the differences are small, I would like to

  • 46G310U - Can't select Cinema Mode: Grayed out

    Hi everyone,  I have a 46g310u and was trying to change the Cinema Mode from Video to Film but the option appears in the menu grayed out (unselectable).  The LCD is connected to my laptop via HDMI.  Thanks Please help!

  • Send Smartform Email via Action Profile

    Hello, We have an Action Profile with a few actisn athat a workign perfectly.  I have added a new action to send  smartform via email when the the transaction is saved. The Action profile is set upfor object type BUS2000115(Quotation) with the contex

  • Problems with iWeb publishing to MobileMe

    Hi, Did you have some problems since about four days on publishing with iWeb to MobileMe? In my case, when I publish my site - and I made just little changes - iWeb publish ALL the pages. I early had this same problem, this spring, and it was a Mobil