Saving just 1 or 2 clips for future projects and deleting all the rest.

I have several completed FCP projects that I would like to pick just a small number of clips from to save for future demos. Then I would like to delete those projects to reclaim my hard drive space. If I start a new FCP project and paste the clips into it, will it copy the source media as well, or does it only point to the media in the original project. (Yes, I'm fairly new to FCP).

You can use FCP's Media Manager, but here's what I'd do to keep it straight forward and simple. Place an IN and OUT point on the sections you want to keep then export them each as self-contained movies ... or you can place the clips you want end-to-end and export them all as one movie and cut it up later when you're making your demo reel. Once you've exported the clips you want to keep, you're free to delete the rest.
-DH

Similar Messages

  • Can anybody explain what is support for ADF Project and to solve the Issues

    Hi,
    I am new to ADF and i am currently associated to ADF Support Project.
    Can anybody explain what is support for ADF Project and to solve the Issues when the ADF Project is in Live.
    we are getting the Tickets for the Issues.
    Thanks in advance.

    I agree with Timo.
    It depends on the size of the project, user base, technologies, etc. We use lot of technologies in fusion middleware stack. We get tickets in many areas.
    In your case, it could be anything like user training issues (user may not know how to use the some system features), browser issues like blank screen, bugs in code like JBO errors (failed to validate, another user has changed row, failed to lock the record, NullPointerException, IllegalArgumentException etc), business logic issues, page may not render properly, performance issues, partial commit issues, application server issues, authentication issues. If you use web services you might get web services related problems.

  • I bough a Mac Pro 2010 second hand and deleted all the files without backing up now is asking me for the Apple ID of the person who installed maverick,any ideas

    I bough a Mac Pro 2010 second hand and deleted all the files without backing up now is asking me for the Apple ID of the person who installed maverick,any ideas

    If the Mac's firmware was updated, you can try this Internet Recovery:
    Hold down Command + Option + R during restart or bootup; hold until you see a spinning globe (takes up to 10 minutes). Once in the Utilities window, use Disk utility to wipe the drive, then return to the window and choose to reinstall OS X. If that works, the OS will be installed without being tied to an Apple ID.
    FWIW, if the firmware was updated, you will not be able to use the Snow leopard disk to install - I just did several tests and it does not work. You can, however, possibly install the SL onto an external drive and then clone it to the internal or (if you have a clone), boot from that and clone it back - I just tested that as well.
    If the firmware was not updated, then you can use the SL install disk.

  • HT201401 I have my a song purchased from Itunes and would like to use part of it for a ringtone and get all the way thur the process of getting it to my phone but it goes to sync to my phone it doesn't show up in my phone like it says it is suppose to und

    I have my a song purchased from Itunes and would like to use part of it for a ringtone and get all the way thur the process of getting it to my phone but it goes to sync to my phone it doesn't show up in my phone like it says it is suppose to under ringtones. Does anyone have any tips on how to do this.

    http://osxdaily.com/2010/09/04/make-free-iphone-ringtones-in-itunes-10/
    https://discussions.apple.com/message/17777381 - making a ringtone
    Getting ringtones folder to show in iTunes - https://discussions.apple.com/thread/2629494 - iTunes > Preferences. Under the General tab below Show, confirm Ringtones is selected

  • Help - I have an apple id account, where is my iPod and iPad registered, but also the iPod of my daughter. How can I make an account for my daughter and keep all the apps she has on her iPod?

    Help - I have an apple id account, where is my iPod and iPad registered, but also the iPod of my daughter. How can I make an account for my daughter and keep all the apps she has on her iPod and in her own iTunes?

    Sorry, content bought with one Apple ID cannot be merged or transferred to another Apple ID.

  • I need help to decide which macbook pro is best for photo editing, editing movies and doing all the rest too like excel, word etc. 13"

    I need help to decide which macbook pro is best for photo editing, editing movies and doing all the rest too like  microsoft office products ...excel, word etc.  I am new to the apple world and have liked the idea of the MAC Book Pro 13" but really dont know if this is good enough or if the computer will soon crash?
    13-inch: 2.6GHz
    with Retina display
    Specifications
    2.6GHz dual-core Intel Core i5
    Turbo Boost up to 3.1GHz
    8GB 1600MHz memory
    512GB PCIe-based flash storage1
    Intel Iris Graphics
    Built-in battery (9 hours)2

    That's a fine machine and, with 8GB of RAM and 512GB flash storage should serve you well for light video/photo editing as well as for 'normal' usage. And it should last you for years to come.
    Good luck in making your decision!!
    Clinton

  • How to search for a pattern string in entire registry and delete all the keys and subkeys that contain the pattern (C# or VB)?

    I want to search for a pattern string in the entire registry and need to delete all the keys and sub-keys that contain the pattern. How can I implement this in VB Script or C#? Appreciate if you can give some sample examples. Now every time, I am manually
    searching for the pattern in registry and deleting one by one.
    Thanks Prasad

    There is no built in way to do this. You'll end up having to enumerate all keys and values in the entire registry and comparing each one for a pattern using Regex or similar.  This is going to be really slow but there isn't much else you can do about
    it (other than parallelize the enumeration).  Also note that you won't have permissions to all keys for read and/or write access so you'll need to skip over those using exception handling.
    Michael Taylor
    http://blogs.msmvps.com/p3net

  • Search for a word and return all the  lines (row) from the text file..

    Hi all,
    I need a help on how to search a string from the text file and returns all the lines (rows) where the searched string are found. I have included the code, it finds the indexof the string but it does not return the entire line. I would appreciate your any help.
    public class SearchWord
         public static void main(String[] args){
         //Search String
         String searchText = "man";
         //File to search (in same directory as .class file)
         String fileName = "C:\\Workspace\\MyFile.txt";
         //StringBuilder allows to create a string by concatinating
         //multiple strings efficiently.
         StringBuilder sb =
         new StringBuilder();
         try {
         //Create the buffered input stream, which reads
         //from a file input stream
         BufferedInputStream bIn =
         new BufferedInputStream(
         new FileInputStream(fileName));
         //Holds the position of the last byte we have read
         int pos = 0;
         //Holds #of available bytes in our stream
         //(which is the file)
         int avl = bIn.available();
         //Read as long as we have something
         while ( avl != 0 ) {
         //Holds the bytes which we read
         byte[] buffer = new byte[avl];
         //Read from the file to the buffer
         // starting from <pos>, <avl> bytes.
         bIn.read(buffer, pos, avl);
         //Update the last read byte position
         pos += avl;
         //Create a new string from byte[] we read
         String strTemp =
         new String(buffer);
         //Append the string to the string builder
         sb.append(strTemp);
         //Get the next available set of bytes
         avl = bIn.available();
         catch(IOException ex) {
         ex.printStackTrace();
         //Get the concatinated string from string builder
         String fileText = sb.toString();
         int indexVal = fileText.indexOf(searchText);
         //Displays the index location in the file for a given text.
         // -1 if not found
         if (indexVal == -1)
              System.out.println("No values found");
         else
              System.out.println("Search for: " + searchText);     }
    }

    Hi, you can use servlet class and use this method to get the whole line of searched string. You can override the HttpServlet to treat that class as servlet.
    public class ReportAction extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    //write your whole logic.
    BufferedReader br = new BufferedReader(new FileReader("your file name"));
    String line = "";
    while(line = br.readLine() != null) {
        if(line.contains("your search string")) {
            System.out.println("The whole line, row is :"+line);
    }

  • Wouldn't it be useful to many users to be able to select and protect a few known cookes (e.g., for banking, subscriptions, etc.) then delete all the rest?

    Some cookies are necessary in order to manage material on banking sites, subscription sites, etc.
    It seems to me that enabling some way to scroll through the cookie list, marking those one wants to keep, would be useful -- then one could periodically blast all the other detrius away with the "Remove all cookies" function.
    Perhaps in a future release?

    Exceptions can work both ways. If you disable (block) all cookies then you can set an allow exceptions for cookies that you want to keep. If you keep cookies then you set set a block exception. You can see the permissions for the current server on Tools > Page Info > Permissions
    If you use [[Clear Recent History]] then you remove all stored cookies, also the ones that are an allow exception.

  • Red dates for birthdays only in January all the rest are in black

    I have set my calendar up and I can't find a way to make all the birthdays in red for the rest of the months. I can change the text but not the date..

    i got red birthday dates on the January page, but black birthday dates on the other 11 months. please help..

  • Creating a powerhsell script to check for .ost files and delete all .ost files if there is any detected

    Hi Guys,
    I was hoping someone could help me with a PowerShell script to check a directory to see if any .ost files exist.
    If it detects any .ost files I want it to run this code:
    get-childitem "C:\Users\*" -include *.ost -recurse -force | foreach-object { remove-item $_ -force  }
    If it doesn't detect any .ost files I just want the script to exit.
    Looking to add this to our startup scripts in group policy
    Many thanks,

    Hi Tlewis4435,
    In addition, please refer to the script below:
    $files = get-childitem "D:\SHARE\*" -include *.ost -recurse -force
    if($files){ #detect files
    foreach($f in $files) { remove-item $f -force }
    else{exit} #if there is no file then exit powershell
    If there is anything else regarding this issue, please feel free to post back.
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support

  • My Iphoto library has recently updtaed itself with a same picture icon for every event. I backed up all my photos and deleted all the events in the library. When I imported  a fresh batch of pictures the same picture appeared as the key photo. Help

    Hi,
    My i photo events in the library have updated themselves with a key photo. I really do not want this picture as a key photo on every event.
    I backed up and deleted my entire library. After importing a fresh event, the key photo still remained the same. How can I stop that. 

    Sorry to ask but since we onlhy have words to comunicate with here using them correctly is critical
    iPhoto is an application and lives in your Applications folder
    Your photos are in a database which by default is names iPhoto library and is in your pictures folder
    I still have Iphoto on my computer.
    Is this the application of the intact non-functioning liPhoto library?
    I have copied all the pictures on a USB so I wont loose any data.
    exactly how did you do this?
    Then I deleted all the pictures.
    and exactly how did you do this?
    Have you done this?
    If so what were the results?
    Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your thumbnails (you may need to do several times)
    LN

  • I backed up my 4s yesterday, someone changed the name of the phone and deleted all the msgs. today when i wanted to restore it , iTunes is showing that last back was 2 months back.. no new restore.. but i just backed up yesterday and i used to back it up

    after every 15 days i back up.. i dnt know where are tose back ups

    I'm having this EXACT same problem with my iPhone 4, and I have the same computer stats (I have a Samsung Series 7)

  • Query for  customer and its all the underlying sites in AR

    Hi Expert,
      Please help me to build a query for a customer and its all the underlying sites .
    Thanks

    Please check this thread:
    Running Total in QLD
    Thanks,
    Gordon

  • I want to set up 5 different ipods to sync from one library, but want to be able to control what is synced to each ipod and have it remember that for future synching and just look for new songs and not sync all the other music in the library

    I want to set up 5 different ipods to sync from one library, but want to be able to control what is synced to each ipod and have it remember that for future synching and just look for new songs and not sync all the other music in the library

    Click here for options.
    (58961)

Maybe you are looking for

  • Custom control in custom page layout not getting shown

    Hi, I have created a site column for Date field: <Field ID="{GUID}" Name="MyCustomPageLayoutDate" StaticName="MyCustomPageLayoutDate" Group="TestGroup" Type="DateTime" Format="DateOnly" DisplayName="Date" Required="FALSE" ><Field ID ="{guid}" Name ="

  • No sound w/any game apps. Suggestions?

    All games I've downloaded  open w/o sound.  Volume works fine w/music, videos, youTube, etc. Suggestions?

  • Organization Tree

    Just switching to Aperture from PC Photoshop and I don't understand the most basic issues! 1-Where are the Masters? 2-What is the sequence of organization: Project/Folders, etc???

  • Battery usage stats check

    Hey guys, I have a new iphone 4, i fully charged it and then recorded its depletion time. My battery stats are: standby-1 day usage-   9 hrs 10 min and now the battery percentage reads 5%. are this statastics ok for a new iphone?

  • How to display progress bar

    In the AIUserSuite there is not a way to display the progress bar, seached everywhere and found nothing. Please help!