How to trash media after project is done

I'm using FCP 7. I just finished a project, burned to DVD, saved a QT (full resolution) in my external HD and now I would like to get rid of all the media I used for the project for disk space purpose.
Can someone please tell me how do I do that? I have an external HD where I keep all my FCP projects (scratch disk).
Also, once I do that, will I still be able to edit the saved project in the future (the one I keep in my internal HD) or once the media is gone, you can't do anything else?
Thank you very much.

If the QT file you exported was self-contained, then you can edit that later if needed.
To delete files associated with that project, open your scratch disc and locate the folders bearing that project's name. There should be a folder with that project's name inside these folders on your scratch disc:
Audio Render Files
Autosave Vault
Capture Scratch
Render Files
Also locate the Thumbnail Cache and the Waveform Cache folders; files for that project will also be located in those two folders, but not in their own named folder.
Move all of the above to the trash, then delete the trash.
Since the project file itself is relatively small, I recommend that you keep that one ... just in case you ever need to re-capture/re-edit.
-DH

Similar Messages

  • How to organize media and project?

    Hi every one
    I have a couple of questions regarding planning & organization of files/folder:
    Presently, I have organized as Macintosh>Users>Home>LaCie>Project.
    And within the Projects I have logged & captured clips.
    When I hit the Project the browser opens where clips are organized.
    questions:
    1. Is this an efficient way of organizing the Media & its elements? If not, what and how the best way are: Please give me an example
    2. How can I bring the Project and its elements & Media file into a folder? In the finder I don't see any folder/files except the User Folder and the Project Icon.
    3. If I want to import some of the elements of one project into another project iin the Browser I cannot do it unless I have to import the entire Project with its elements. How can I import elements of different project and even Media file? Thank you for your help. Faruk

    I have the main macintosh HD, and 2 internal hardrives... one labelled "Capture" and the other labelled "Render"
    the way i setup my files are as follows.
    1. on the Render drive, i made a folder titled "FCP Projects" within that folder I create another folder for every project I create complete with "Pics" folders "Audio" folders and whatever outside elements you want to bring in to your session..... this keeps all those files in one place when you go to archive them.
    1a. Within the FCP projects folder (along with my project folders) I created a "-FCP Files-" folder.....I use the dashes to keep the folder at the top of the list.. This is where I tell FCP to send all audio render, autosaves, render files, thumbnail cashes, and wave form cashes to...... for all projects. Basically everything but the capture scratches..... that goes on the Capture harddrive.
    2. when I archive a project.... all I take is the project folder from the Render drive with all the pics and audio.... and ignore the fcp files (even the render files) then on the capture harddrive... i back up the capture scratch folder for the specific project.....
    3. if you ever HAVE to load the session back to re edit.... you'll have all the media but need to re render......
    hope that made sense...... I'll attempt to confuse you even more by making a crappy diagram.... but it's worked great for me.
    RENDER DRIVE
    _FCP Projects
    __-FCP Files-
    __Audio Render
    __Autosave Vault
    __Render Files
    __Thumbnail Cashe
    __Waveform Cashe
    __Project 1 (Archive this folder and its capture scratch)
    __Pics
    __Audio
    __Session File
    __Project 2 (Archive this folder and its capture scratch)
    __Pics
    __Audio
    __Session File
    CAPTURE DRIVE
    -FCP Files-
    __Capture Scratch
    _Project 1 (automatically crated by FCP)
    _Project 2 (automatically crated by FCP)
    G5 dual 2.7 - 17in MBP   Mac OS X (10.4.8)  

  • How to post costs after project close?

    I wish to post costs to a project ( WBS/Network) after the status is set to close?
    Can you please tell me how we can do it.

    In the Closed status you can no longer make any changes to the project hierarchy. The status is passed on to subordinate WBS elements.
    The status allows
    You to post actual costs to orders and networks that are assigned to the WBS element, as long as their status permit this
    The status prohibits
    You from assigning networks, production orders or CO orders to the WBS element.
    You from posting actual costs to the WBS element
    The status deactivates assets in construction that are assigned to the WBS element.
    You can cancel the Closed status. In this case the system sets the Technically completed status.
    However, it is best not to post costs to the subordinate WBS/network either. If required, undo the CLSD status and post.

  • How to send email after bdc upload done?

    Hi Experts,
    How do we send an email after the bdc upload program run successfully. I want to send email to the users saying the material upload successfully message with the material details.
    How can i do it? Is there any way to trigger a mail after calling the bdc upload part?
    Please help me on this.
    Thanks in advance.
    Regards,
    Rashika.

    Hi,
    After the BDC has run. check if sy-subrc is zero or not.
    IF sy-subrc EQ 0.
            COMMIT WORK.
    and in this IF statement use the following code:
        wa_receivers-receiver = so_malid-low.
        wa_receivers-rec_id = so_malid-low.
        wa_receivers-rec_type = 'U'.
        wa_receivers-com_type = 'INT'.
        wa_receivers-notif_del = 'X'.
        wa_receivers-notif_ndel = 'X'.
        APPEND wa_receivers TO gi_receivers.
        CLEAR wa_receivers.
    Populate the subject/generic message attributes
      wa_doc_data-obj_langu = sy-langu.
      wa_doc_data-obj_name = lc_obj_name.
      wa_doc_data-obj_descr = 'Find Inactive PU/DU'(001).
      wa_doc_data-sensitivty = lc_sensitivity.
    Describe the body of the message
      wa_message = '<html><head>'.
      APPEND wa_message TO gi_messages.
      wa_message = '<style type="text/css">'.
      APPEND wa_message TO gi_messages.
      wa_message = lc_style_content.
      APPEND wa_message TO gi_messages.
      wa_message = lc_style_content1.
      APPEND wa_message TO gi_messages.
      wa_message = '</style></head>'.
      APPEND wa_message TO gi_messages.
      wa_message = '<body>'.
      APPEND wa_message TO gi_messages.
      wa_message = 'Hi,<BR><BR>'(002).
      APPEND wa_message TO gi_messages.
    CONCATENATE(' Updation successful')
        '.<BR><BR>'
        INTO wa_message SEPARATED BY space.
        APPEND wa_message TO gi_messages.
    DATA: lv_tab_lines TYPE i VALUE 255.
      CLEAR gi_packing_list.
      REFRESH gi_packing_list.
      wa_packing_list-transf_bin = space.
      wa_packing_list-head_start = 1.
      wa_packing_list-head_num = 0.
      wa_packing_list-body_start = 1.
      DESCRIBE TABLE gi_messages LINES lv_tab_lines.
      READ TABLE gi_messages INDEX lv_tab_lines INTO wa_message.
      wa_doc_data-doc_size = ( lv_tab_lines - 1 ) * 255 + STRLEN( wa_message ).
      APPEND wa_message TO gi_messages.
      DESCRIBE TABLE gi_messages LINES wa_packing_list-body_num.
      wa_packing_list-doc_type = 'HTM'.
      wa_packing_list-doc_size = lv_tab_lines * 255.
      APPEND wa_packing_list TO gi_packing_list.
      CLEAR wa_packing_list.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data              = wa_doc_data
          sender_address             = gc_sender_address
          sender_address_type        = gc_sender_address_type
          commit_work                = 'X'
        TABLES
          packing_list               = gi_packing_list
          contents_txt               = gi_messages
          receivers                  = gi_receivers.
    Regards,
    Rajesh Kumar

  • What is iMovie doing after update?  How can I tell when it's done?

    "Updating" a whole lot of old iMovie events to the new iMovie 10 library.
    When I tried to trash the old events the OS warned that they were "still in use".  No problem, I thought.  Shut down iMovie, and then trash the old events.
    Well, when you try to shut down iMovie it tells you there are still "tasks being completed in the background" and that if you shut down they won't ever be completed.
    so......
    What are these tasks?  (iMovie 10, after a big import, is using about 20-25% of a CPU continuously, according to Activity Monitor)
    If I do shut down despite the warning what are the consequences?
    How can I tell when it's done and I can safely shut down iMovie? (I guess I sould wait and see if it ever stops warning me).

    Did you read the manual? It's usually explained on what does all this stuff mean on the screen. I don't think the manual that comes with the Micro isn't the player's guide but if you install the software I think, you can look it up by going through Start>Program Files>Creative>Creative Zen Micro>User Guide. This is the default directory.
    Anyway, yes your Micro is charging and if you want to play your music on your MP3 player while it's charging you can use Nomad Explorer to play the music on your computer or use Creative Mediasource to play the music and hear it from your MP3 player. You can't control your MP3 player so just use your computer. It's not that hard to learn.

  • How to trash pref./folders relocation & save projects

    Hi all
    My equipment is iMac2011 version 10.6.8, with 2 HD – one for system and the other one is for scratch. I have 3 questions:
    (1) I have some projects done and I already burn them to idvd.  Now I wish to know how do I clear these projects at the same time to keep enought materials for future dvd burning.
    (2) I understand some preferences folders should be trashed to refresh the FCE system that is including the com.apple.FinalCutExpress.plist Folder and the Final Cut Express User Data Folder.  It’s easy to trash the .plist  but when I open the User Data Folder, there are several items inside: i.e. Custom Settings folder (it is empty); Plugins folder containing: PieroF_AutoPanZoom_v1.1Rfxscrip (Simple Text Format); Final Cut Express Obj Cache.fcmch file (Final Cut Express File); Final Cut Express Prof Cache.fcpch (Final Cut Express configuration file); and Final Cut Express 4.0 Prefs fcset (Final Cut Express Configuration File). I appreciate some one would take time to explain these items and tell me which one should be trashed and why.
    (3) Right now my Project File is sitting inside the Autosave  vault (Scratch Disk>Final Cut Express Documents> Autosave Vault) which I think is not right and I think it should be in the System Disk>Documents>Final Cut Express Documents. If what I think is right, then I should relocate the Autosave Vault Folder from Scratch to System Disk and at the same time, the Project file in trhis folder shgould be removed from there and to store it in the Movie Folder, but I don't know
    how.
    There must be some one out there don’t mind to take time to explain the above and show me how to solve all these problems.  P Sum
    Thank you all

    (1) Make and save a disc image of the final DVD; you can burn future copies from the disc image ... or just keep a finalized DVD disc to use for making copies.
    (2) Normally you would only  trash preference files if they become corrupted, but when you do need to trash them, use this free app to trash do it the proper (and easy) way: http://www.digitalrebellion.com/prefman/ .  It will also allow you to make backups of preferences so you don't lose all of your settings files in case of corruption.
    (3) The project file will reside wherever you choose to save it in the first place.  Normally, one would not choose the Autosave Vault since autosave files are simply backups of your project file.  The Autosave Vault should be on another physical hard drive so if the drive your project file resides on crashes, the latest autosave file will keep you from losing all your work.  I save project files in my User folder on the main hard drive and keep autosave files on the drive I use as the Capture/Scratch disc.
    -DH

  • How do I create a project site after I publish a project in Project Server 2013?

    How do I create a project site after I publish a project from project pro 2013 in Project Server 2013? I'm trying to look for an option in the ribbon but haven't found any. 
    Thanks
    James T.F

    Hi James,
    See in the article the procedure for site provisionning settings.
    Note that the project site is created based on the template associated to the chosen project type (EPT) when the user first publishes his project. Be aware that if you allow the user to choose weither or not he'll create a sharepoint site when publishing
    his project, he will be prompted in Project Pro with a dialog box giving the choice to create or not the site.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • How can you tell FCPX project files in a deleted trash recovery program

    Hello All
    Did the unthinkable and trashed a FCPX project folder I need.....and emptied the trash.
    I immediatly went into recovery with program ''Stellar Phoenix...'' and was able to recover loads of files.
    Since they are now ''generic'' labeled, I can't decifer which one is the FCPX project file.
    Does anyone have a method to determine which is which in a recovery situation.
    Some further info....
         recovered files are organized in folders by types:
                   OSX 10.6
                   graphics
                   documents
                   apps......sub folders to include: ''c source...plist....apple scripts....etc
                   video
                   audio
                   archive
                   and a few more..
    It seems apparent that it's not going to be video,audio. graphics...etc
    but I was thinking ''apple scripts'' as a project is just instructions for the timeline movie, right?
    anyway, have a lot of searching to do and no real map on what I'm looking at here.
    Anyone had an experience like this and can shed some light?
    ...greatly appreciate it
    Thanks!

    Monty,
    Within FCP, there is a menu item called "Media Manager" (depending on what version you are in). This would be worth your while to look into. It basically organizes your project by moving/archiving any used assets of a project and leaving out un-used assets. It saves a ton of disk space.
    For example, say you have a 5 minute clip with an in/out point that is just 30 seconds. Media Manager will "archive" just that 30 seconds, not the entire clip. There is even a setting that you can add additional "handles" time to the front andd back of the clip if you think you may need to add or change transition.
    Do a google search. I was just watching a few Youtube videos on this myself.
    Jonathan

  • HT202853 I have many project made in move HD that are not updating to the new iMovie 10 on my new iMac.  Why is this not working as stated?  How do I get my projects back from backup after old iMac crashed?

    I have many projects made in imovie HD that are not updating to iMovie 10 on my new iMac.  Why is this not working as stated on the article HT202853?  How do I get my projects back from backup after old iMac crashed?

    According to:
    Update projects and events from previous versions of iMovie in iMovie (2014) - Apple Support
    you can update from iMovie versions 7, 8 and 9, but iMovie HD is iMovie 6.
    Maybe you can update in two steps, first from iMovie 6 to iMovie 7, 8 or 9 then to iMovie 10. 
    Geoff.

  • How to run media file after Runtime.exc the real player?

    Hi
    How to run media file after Runtime.exc the real player application

    String command = "cmd /c start videotest.rm";
    Runtime.getRuntime().exec(command);

  • I deleted by accident an avi file from my ipad. I'm not close to the pc where I can connect to my itunes. How can I retrieve it? Ipads don't have trash cans?

    I deleted by accident an avi file from my ipad. I'm not close to the pc where I can connect to my itunes. How can I retrieve it? Ipads don't have trash cans? Thank you in advance!

    You can't. You'll have to connect to your PC.
     Cheers, Tom

  • HT5137 How do I stop an app or shut it down after I'm done using it?

    After I'm done with an app, how do I shut it down?

    Close apps
    1. Double tap the home button to bring up the multi-tasking view
    2. Swipe the app's windows upwards to close
    3. The app will fly off the screen

  • How do I delete the media after import from camera?

    How do I delete the media after import from camera?

    The usual procedure with video is you backup the card contents onto an archive drive. You import from the archive drive making a copy (professionals on set make two copies), and once the backups and import are verified, the card is reformatted in the camera.

  • I was downloading the walking dead app on my iphone and after it was done it started saying waiting. I can't delete it but if I go into the App Store I can open it through there. Can someone please tell me how to delete it.

    I was downloading the walking dead app on my iphone and after it was done it started saying waiting. I can't delete it but if I go into the App Store I can open it through there. Can someone please tell me how to delete it.

    I have the exact issue with Vivino on Iphone4S. Did u figure out a fix?

  • I don't remember my security questions and I don't how rest the answers after resetting my password. I want to use my itunes credit to purchase music on my idevices.

    I don't remember my security questions and I don't how rest the answers after resetting my password. I want to use my itunes credit to purchase music on my idevices. What can I do? I don't remember the answers to the questions.

    See Kappy's previous discussion.
      HT5312 How to recover security...: Apple Support Communities

Maybe you are looking for

  • Using FORM ENDFORM in ABAP OO

    Hi, I wrote the code like this .I am trying to use FORM which is defined in Report programm,But I am always getting error message "Error at parameter 2 ":what change should i do for this. earlier I used the same code  in ABAP ( not ABAP OO) it was wo

  • Button not visible in IE7 until clicked

    Perhaps not entirely ADF-related, but we have a login page in our ADF/WebCenter 11g PS5 application. In IE7, the submit button is not shown upon rendering the page, but suddenly appears when the form is submitted when pressing enter. Anyone seen this

  • Queries on WPC

    Hello, I have a few queries on WPC, I have performed the initial configuration steps and things are working ok with WPC. however i didnt find the editor so user freindly so as to allow business user to create and manage complex html pages themsleves.

  • SLD Configuration for WEB As JAVA

    SDN TEAM, PLease can you send the screen shots for configuring SLD for WEB AS Java For valuable answer definity i will reward points Regards' CHANDU

  • SMTP routing all messages to Postmaster to Root and then null...

    Anyone got any idea what might be causing this...? Have a very simple OS X Server.  Until upgrading to Server 3 / 10.9 it all worked fine.  Then, after upgrade, I stopped getting mail on the Postmaster account. Digging into SMTP log shows that server