What Exactly should be in the Capture Scratch Folder ?

I apologize for the moronic question, but.....
I recently installed a second internal Hard Drive in my computer which
I was planning to reassign the scratch disc folder to, so that my external
hard drive which holds all the media / video, would not have to do double
duty in holding all the render files, etc. as well as the media.
But in going to do this, I realize I have almost 200gb of video ( in the
form of quicktime movie files ) already there. So if I move that folder,
I am not really solving anything, as a large portion of the media is
already in it.
Can I with relative painless-ness, set up a new scratch disc on the internal
drive, or will this just create an avanlanche of media not found headaches
and the like.
Again, I apologize for what is clearly something I just did not set-up
properly 3 years ago. I do not use this program that regularly or else
there is a chance I might understand it better.
Thanks for any and all help / suggestions,
Sterne
FCP 5.1.4 Older G5 computer.

I may not be understanding you correctly, but I think you will be ok with what you are doing:
Main hard drive with the OS and all your applications.
Second internal hard drive you are adding will contain all the scratch disks and project files.
For example, on this I have a folder entitled "FCP Docs on HD6" which contain all my scratch disks of Audio Render Files/Autosave Vault/Capture Scratch/Render Files/Thumbnail Cache Files/Waveform Cache Files that I set under FCP preferences. I also have another folder on this hard drive that I have labeled for a client--ex. Smith Project--and in here I keep all the other items for this project--the FCP project itself, any jpegs I'm using, any clips I've made self-contained to do smoothcam on, etc.
On your external hard drive you can keep what you have done before and not transfer them over to the new FCP Docs folder. The old project will still access those capture scratches from that external drive. (However, if you have now assigned those scratch folders to your new internal drive, when you open this old project and work on it, the NEW captures/renders/etc will be on the NEW scratch disks while what you have done in the past will still remain in the old.) You just have to remember when you are cleaning out your project or saving it to archive that some of your files are on your external.
You can have different scratch disks on separate hard drives, it just gets confusing if you have too many. FCP will use the scratch disks you LAST assigned. I repeat it gets confusing, just like this explanation probably is
Sharon
Message was edited by: SSteele

Similar Messages

  • I have recently received a project from someone who has already captured the footage, can I use the footage directly from the capture scratch for my new project?

    Will this in any way effect my footage when working/exporting? I will be working off the same hard drive.

    If all the footage played in FC to begin with and all the media is included in the capture scratch folder you should be good to go but I would check a few things.
    Pull the new footage into your project and look under the compressor column. If any files are H264 or MP4 I would recommend converting these to a PR422 or another FC friendly format.  Also confirm any audio only files are aiff/48Khz(not mp3 or 44.1Khz).
    In my experience you can work with H264,MP4, mp3 & 44.1 in FC7 but you are almost guaranteed to have problems later.

  • My clips went offline and disappeared from capture scratch folder

    I was editing a project in final cut express, a movie of my newborn daughter, and was almost finished. The clips had bin logged and transferred into my sequence. Next morning started the nightmare; almost all the clips had vanished...
    The timeline was full of red boxes that said media was offline. Clips i had rendered were still ok, and clips i had captured from another camera were playing.
    Reconnecting the media did not work. The strange thing is that all the clips i had not used in timeline, but was located in the bin, are still ok. They are still in the capture scratch folder. Its just the clips i had used in timeline that are gone. I have searched my mac for the lost clips, but can`t find them. The clips are deleted from my camera, and i have no backup. Stupid me...
    Has someone experienced something similar, or know what to to? Are my clips gone forever?
    I have also tried to find i program that can recover deleted files from videocamera (avchd), but the programs i tried so far can just find jpeg files, no video...
    Hoping for an answer
    -Ola

    Hi Ian,
    The directory is part of each hard drive's 'soft structure.' It is created when you partition & format the drive; and then constantly maintained & updated by the OS and drive controller as you use the drive. Just connecting an external HD to another Mac won't resurrect the directory.
    DiskWarrior and similar utilities can help recover corrupted directories & lost files, but their success depends on the kind & degree of corruption. Most times when something happens to the directory, the files are still intact on the drive - that's why they can be recovered. However the likelihood of recovery decreases quickly if you continue to write to the drive after corruption occurs. That's why it's important to stop saving, copying or moving folders or files on the drive as soon as you notice a problem.

  • Insufficient disk space remaining in the capture scratch

    I’m using a PowerBook G4, 1.25GHz processor with 2 GB DDR SDRAM whit Final Cut Express version 3.5.1. I tried to capture footage from my camera and received a message, “insufficient disk space remaining in the capture scratch.” I moved all the files: Audio render files, Autosave vault, Capture scratch, etc to a new folder on my desk top, but still get the same message when I try to capture. To capture, I click the play button on the screen; hit the mark in button at the point I want to start and the mark out button at the end. Then I click the clip button followed by the ok button on the log clip dialogue box. The program then goes through what I assume to be the capturing process leading to the error message. How do I overcome this? Thank you.

    Hi Geoffemn
    The solution is to buy an external hard disk. Save the files to that. It does nothing to move the files from AV or scratch disk to a folder on the desk top. It still uses the same amount of space on the Power Book's HD. Of course you can look over current files on the HD and delete ones not needed. But that's a temporary fix. Large HD's have come way down in cost per GB. Go buy one. It should run at a speed of at least 7200 RPM and have firewire.
    Carl

  • What exactly is happening in the code mentioned?????

    Hi all,
    I want to know the working of the below code:
    The below code is the WHEN_BUTTON_PRESSED Trigger for the ENTER_QUERY (Push Button):
    DECLARE
      IT_ID1 ITEM;
      IT_ID2 ITEM;
      IT_ID3 ITEM;
    BEGIN
      IT_ID1 := FIND_ITEM('BUTTON.EN_QUERY');
      IT_ID2 := FIND_ITEM('BUTTON.CA_QUERY');
      IT_ID3 := FIND_ITEM('BUTTON.EX_QUERY');
      SET_ITEM_PROPERTY(IT_ID3,ENABLED,PROPERTY_TRUE);
      if :system.mode<>'ENTER-QUERY' THEN
       set_item_property (it_id1,label,'CANCEL QUERY');
       GO_BLOCK(GET_APPLICATION_PROPERTY(CURRENT_FORM_NAME));
       CLEAR_BLOCK(NO_VALIDATE);
       ENTER_QUERY;
      set_item_property (it_id1,label,'ENTER QUERY');
      ELSE
      EXIT_FORM;
      END IF;
    END;
    Can You please tell me what exactly is happening in the above code?
    I want to know the working of it. Help me plz.
    Thank You.
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    Oracle Forms 6i.

    what does if :system.mode<>'ENTER-QUERY' THEN mean??
    SYSTEM.MODE indicates whether the form is in Normal, Enter Query, or Fetch Processing mode. The value is always a character string.
    and what does GO_BLOCK(GET_APPLICATION_PROPERTY(CURRENT_FORM_NAME)); do?
    GET_APPLICATION_PROPERTY Returns information about the current Oracle Forms application. CURRENT_FORM_NAME Returns the name of the current form as indicated by the form module Name property.
    GO_BLOCK navigates to an indicated block. If the target block is non-enterable, an error occurs.
    As per the code, After i press the button, the label ENTER QUERY should become CANCEL QUERY, (that is when system is in ENTER_QUERY mode) .
    So when in the system is in ENTER_QUERY mode, it must display CANCEL QUERY, Right??
    in your post, you also said..
    The below code is the WHEN_BUTTON_PRESSED Trigger for the ENTER_QUERY (Push Button):
    We see 3 button in your code. How can we know which one is ENTER_QUERY button. Your code says...
    ENTER_QUERY;
      set_item_property (it_id1,label,'ENTER QUERY');
    So, it says.. BUTTON.EN_QUERY label will be ENTER QUERY
    Then why the code, (if :system.mode<>'ENTER-QUERY' THEN set_item_property (it_id1,label,'CANCEL QUERY');) ?? which says if system mode is not equal to ENTER_QUERY,
    then it tells to display CANCEL QUERY.
    it says.. BUTTON.EN_QUERY label will be CANCEL QUERY

  • I send my iPhone to apple because my standby button doesn´t fit, what exactly should i send to apple? earphones and charging cable too?

    I send my iPhone to apple because my standby button doesn´t fit, what exactly should i send to apple? earphones and charging cable too?

    No! All Apple needs is your actual phone. Do not send the box or anything else as they will throw it away and you won't get anything back except for a phone! Do not send the sim card either and make sure you backed it up!

  • HELP! "Insufficient Disk Space Remaining in the Capture Scratch"?!

    Please Help Me ASAP!
    im not like lierally dieing but i do need help urgently with Final Cut!
    I am trying to capture my video from the camera and the message pops up that says "Insufficient Disk Space Remaining in the Capture Scratch".
    So I have 2 questions:
    1) What does it mean
    2) What do I do to fix it?
    im cluless here guys! any input asap would be so greatly appreciated! thanks
    Ben

    It means that you do not have sufficiant space on your scratch disk to capture your video.
    What have you designated as your scratch disk? Which drive? Get Info on that drive to see how much space you have available. When you Capture, your Capture Window will give you info on how much space your drive has, and how much video (in time) you put on it
    The solution is to get more space. Like clearing stuff off your drive or getting a new one
    If you are capturing video to your system drive, in other words, this is your scratch disk, this is not reccomended. Designate another drive, either internal or firewire external as your scratch disk.
    For more info on the scratch disk and how to target it, consult your FC manual and online help

  • Error message: insufficient disk space in the capture scratch

    What does it mean, and how do I change it? I have two hard drives in the machine, one of them is almost full, and the other has 700 gb of space left.

    It means that whatever drive you have set as the capture scratch drive now is too full to capture media to...and you need to switch to the other drive. You do this in the SYSTEM SETTINGS...
    Shane

  • What exactly is new in the ne iPad OS?

    What exactly is new in the ne iPad OS? I downloaded it and don't see anything new.

    You need to install it, as well as download it. Then the new features will be as shown here:
    http://www.apple.com/ipad/ios4/

  • What exactly is "other" in the AppleTV capacity bar

    Hi all,
    If I click on the AppleTV device in itunes, I notice it has the following categories in the capacity bar:
    * video
    * audio
    * photos
    * other
    * free space
    What exactly is included in the "other" category? I assume that podcasts may be in there. The reason I ask is that my "other" category seems to be growing (currently 4.56Gb out of 32.85Gb capacity, which is significant). Is there anything I can do to control the size of this?
    Many thanks in advance.

    Likely the case. You have to remember podcasts are provided by 3rd parties and by there very nature some podcasts are amateur productions or are not necessarily aimed at itunes specifically. There is a chance that some podcasts, whilst playing just fine, don't actually meet the specs from the tv prospective and as such even when completely downloaded don't properly get moved to the appropriate category.
    I've just downloaded the 'Hidden Universe' podcasts, I watched the 'other' category increase in size as more of the podcast downloaded, once complete the 'other' reset to its original value and 'video' increased appropriately.

  • What exactly is consists of the "other" category in the capacity bar at the bottom of the sync window?

    What exactly is consists of the "other" category in the capacity bar at the bottom of the sync window?

    Not actually, his statement is to not worry about what is in Other. That is opposite from iOS, if you have 8GB of other you most likely have corrupted files on your iPhone and you need to Restore to eliminate them.

  • Insuffiecient dis space remaining in the Capture Scratch message.

    Adding insult to injury, I'm now getting the message, "Insuffiecient dis space remaining in the Capture Scratch" when I try to capture a clip which is 00:03:47:00. I have more than 700 gig available on the external drive, which is where my capture scratch resides.
    Wouldn't it be great to get over this hurdle, so I can get on with my day.
    DG

    Figured it out. I had typed 1000000 in the minimun open space field. I'm still saving for the external drive.
    DG

  • Keep getting capture scratch folder in my capture scratch folder

    In my system settings I have set capture scratch like this...MEDIA1:capture scratch. Of course MEDIA1 is one of my drives. But why am I getting a capture scratch folder in my capture scratch folder? Shane, I even carefully followed your instructions not to make the mistake of clicking the scratch folder. I just cannot fiqure this out.
    Best,
    Tom

    thought i'd use this post to raise the whole issue of interface elements held over from bygone days ...
    why, exactly, is this folder still referred to as a "scratch" folder. isn't the convention that "scratch" files are temporary? seems to me this is a remnant of old design where FCP 2 (i think) captured media to a temporary file and then moved it over ... modelled perhaps on photoshop's "scratch disk" temporary files? all sounds very temporary and makeshift. how about just a "final cut media" folder?
    this is a bit irksome as final cut becomes more and more fussy about where it stores (and keeps) files.
    end of today's musing.
    R.

  • Importing photos, where is my capture scratch folder

    Where is my Capture Scratch folder when I import photos?
    I am making a claymation movie with about 2000 phtotos that I took with my digital camera. Here is my work flow:
    1. Import photos into iphoto - everything works fine
    2. Open FCP and create a new project.
    3. File>import>files>photos
    4. I select all the photos>choose
    5. Photos are imported into FCP browser.
    Question: I checked my capture scratch and there is no file and no photos. I want to be organized and keep media in one location. I have captured videos from a camera and everything works like it should be.

    Newer versions of iPhoto store the pictures in a "Bundle", a special type of folder. Applications use the same method to store their individual components. Normally, bundles can only be opened from the Finder by right clicking and choosing "Show Package Contents" from the drop down menu.
    Tampering with, renaming or moving the bundle in iPhoto's Library can render it unusable and you might no longer be able to access your pictures.
    Now that they are in there, your best option is to go through the pictures in the iPhoto interface, select which ones you want to use and export them in their native size to another location, such as FCP's Capture Scratch folder, as per previous posts.
    How you do this depends which version of iPhoto you have, but it will be either via File > Export or by using the Share menu bar item. This will of course copy the pictures.
    For the future, dismiss iPhoto when it starts up with your camera or SD card connected. Instead, launch *Image Capture* from the Applications folder. The interface is largely self-explanatory. You will be able to import the pictures directly to a location of your choosing.

  • Clearing the Capture Scratch file

    When is it safe to clear the files in your capture scratch file? i am going to be upgrading to leopard and when i upgrade i want to strip my 3 hard drives. so before i do that i want to make sure i have my back up all my current work and get rid of what ever is not important. so the big question is what can you trash and what do you need to keep in this file. if i had to guess, you need to keep all the files that are current, if you delete them then you will need to recapture them. is that correct?

    Ian's right.
    But if you're brave and - more importantly - are absolutely meticulous about how you logged your clips (reel number being the most important) and are sure that all your DV tapes run in an unbroken 00:00;00-60:00;00 - then you can delete your capture scratch per project whenever you feel comfortable about doing that and then...
    ... when everything has been reinstalled and reformatted back up you can open your original project files, click capture project and you will be prompted to insert your reels number/name by number/name. FCE will automatically find what you logged.
    If you're too late (ie you've entered too many reel 001's) you can still change the reel settings in the appropriate bins in the browser. Just view as list and then and rename the reel settings.
    Be sure to name the tapes too.
    You should be fine (if you're brave and meticulous).
    Incidentally all other files can the FCE docs folder (Waveform cache, thumbnail cache, autosave vault, ender files and audio render files) can be safely deleted. When you re-open your project files you can re-render everything. Just never never delete your project files.
    Hope this helps.
    M.

Maybe you are looking for

  • Everytime i create a template it recks my menu bar!

    I created a css style sheet that would help me edit some things on my template that i have. I attached the css sheet to my template and have put not one thing in my style sheet yet. I was working with controlling the shape of my box on the div tags o

  • What is the latest version of mail

    I am running OS X 10.9.5 and Mail Version 7.3 (1878.6). Is this the correct version of Mail. If not, what is the latest version, and where do I go to download it? Thanks for the help. Peter

  • Executing SSIS packages.

    The SSIS packages has been developed using Visual Studio 2010 Shell. The ssis packages executes fine, if it is executed from VS 2010 shell environemnt (Right Click and execute ) , but while double clicking on the dtsx file and move to Configurations

  • Photo Stream sharing among 1000 company phones

    I have just under 1000 phones that I need to set up to share pictures. I know the limits of Photo Stream. Are there workarounds to those limits like setting up 10 streams and having 100 subscribers to each? What other methods or apps are there? Thank

  • Where is the eject button or a plug in device in iphoto

    where is the eject button or a plug in device in iphoto