Ex. device detecting dropped frames (from tape) and breaking clips!

I am using a Panasonic mini-dv camcorder to capture footage with on Final Cut Pro and the camera is being pretty sensitive to any glitches/dropped frames and is messing up capturing clips. When I try it multiple times it will sometimes not stop/find glitches, but this is very time consuming (have about 80 hours to go through!). I have gained some access to a mini-dv deck and that is working, but I also need to use the camera due to deadlines.
Is there a way to make this sensitivity in capturing turn off? Any suggestions/tips? (I've already gone into User Preferences and deselected 'Abort Capture on Dropped Frames' and that didn't change it).
Thanks!

#12 Dropped frames on capture/playback
Shane's Stock Answer #12: Dropped frames on capture/playback
http://docs.info.apple.com/article.html?artnum=58640
1) Do not capture to your main system drive. Since it is busy reading the operating system and application files, it will intermittently drop frames during capture. Capture to a separate internal drive, or external hard drive (firewire and eSATA for example).
2) Deactivate any anti-virus/filesaver software, including Norton and Virex. For some reason these programs think that the large files created when you capture media are in fact caused by some sort of virus, and they try to prevent this.
3) Check the format of the drive you are capturing to. It should be Mac OS Extended, journaling off. If it isn't, copy your files from it and re-initialize it. If it is any other format, you will encounter problems. If not at first, then eventually.
4) Trash the FCP preference files. Use FCP Rescue available here:
http://www.fcprescue.com
5) Make sure that the hard drives you are capturing to are fast enough to handle the footage being captured to it. A regular firewire 400 drive cannot capture uncompressed HD, or even uncompressed standard definition. A RAID array of drives might be in order for these formats.
Shane

Similar Messages

  • Is there any way to know data is read from tape and written to disk

    is there any way to know data is read from tape and written to disk

    784786 wrote:
    Just asked because I am doing restoration, I see files read from tape and then restored, but can't find them physically there.
    Is there any way I can find it.What kind of restoration? What kind of files?
    The usual "no information" question is of the form "My car won't start. Tell me how to fix it"
    Yours is a bit different - "I tried to fix my car. Tell me how to know it's fixed".

  • Every cut I make in the sequence window leaves one remaining frame from its deleted neighbor clip. How do I turn off this feature - It is driving me mad.

    Every cut I make in the sequence window leaves one remaining frame from its deleted neighbor clip. How do I turn off this feature - It is driving me mad.

    Here are 3 pictures detailing what I'm experiencing.
    Picture 1; clip 1 tail frame.
    Picture 2; clip 2 head frame.
    Picture 3; clip 2 head frame is now tail frame of clip 1.
    does this help describe what is happening? Basically every cut I make
    leaves an unwanted frame as a ghost of the missing cut.
    best,
    Fred
    On Wed, Dec 10, 2014 at 4:50 PM, Kevin Monahan <[email protected]>

  • Dropped frames during playback and Record To Tape

    Mac G-5, OS X 10.4.4; 4 X 2.5 GHz; 4.5 GB DDR2; NVIDIA GeForce 6600 w/256MB.
    G-Raid 1TB, Format Mac OS Extended; External FireWire 800 port.
    Maxtor 300GB Internal, Format Mac OS Extended (journaled)
    Tape deck, Sony Mini DV GV-D1000 NTSC FireWire 400 port used for digitizing and mastering.
    Have searched forum for solution to dropped frames. Based on other suggestions, set Final Cut Pro 5 RT button to SafeRT; Playback quality to High; Playback Frame Rate, Full. Compression rate at 75%. Sequence > Render All-Video Needs Rendering;Audio, For Playback Render Only-Mixdown.
    System Settings--Scratch Disk Video Capture and Audio Capture set to RAID. Video Render and Audio Render set both to Maxtor or RAID. Either case dropped frames.
    User Preference--Real-Time Audio Mixing, 2 tracks (have also tried 4 tracks, which equals # of tracks actually used).
    In spite of changing all the above settings, I still get dropped frames. Am I missing yet another setting that will fix the problem?
    Kerwin

    Any heavy filtering and/or effects?...including audio, since you've specified the same number of audio tracks in your real-time audio prefs that you're working with...
    ...and yes, please explain 75% compression...
    K

  • Drag and Drop - detecting drop away from a component

    Flex 4, AIR 2.0 app
    I have a drag and drop detecting a Button drag away from a Group1 into Group2.
    When the user drops into a Group2, the Button is added to it, which obviously removes it from Group1.
    I would like it that if the user drags away from Group2 and drops it randomly on the screen, the Button will be added back into Group1.
    Does anyone have any ideas as to how I might go about detecting the end of a drag when not over a component, so I can add the button back into Group1 again?
    Hope that makes sense!!!

    Thanks Ronnie,
    I'll have a look at gthis as it looks a bit more efficient than the solution I have come up with.
    The only thing I'm not sure about is at what point my Button gets put back into Group1.  In my current movie, I have a function which handles the dragDrop event.  But if I drop outside a component, I don't have an event from which I call the handleDrop(dragEvent) function.
    I'll have a look.
    In the meantime, what I'm doing is Making my drag item a custom component, passing a reference to it's default container (Group1) and its Default X and Y co-ordinates.
    Then, I have a dragComplete handler which is called whenever the drag item is released - I then check the action property of the event and if it is "none" I know it has been dropped outside a recognised target and I can add it back into its default group and set its default x and y coordinates.  This seems to work quite nicely at the moment.
    so, my code in the Drag Button looks like this:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Button xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        mouseDown="mouseDownHandler(event)"
        dragComplete="dragCompleteHandler(event)">
    <fx:Script>
      <![CDATA[  
       import mx.core.DragSource;
       import mx.core.IUIComponent;
       import mx.events.DragEvent;
       import mx.managers.DragManager;
       public var _defaultParent:Object;
       public var _defaultX:Number;
       public var _defaultY:Number;
       protected function mouseDownHandler(event:MouseEvent):void
        // the drag initiator is the object being dragged (target of the mouse event)
        var dragInitiator:IUIComponent = event.currentTarget as IUIComponent;
        // the drag source contains data about what's being dragged
        var dragSource:DragSource = new DragSource();
        // ask the DragManger to begin the drag
        DragManager.doDrag( dragInitiator, dragSource, event, null );
       protected function dragCompleteHandler(event:DragEvent):void
        // TODO Auto-generated method stub
        //trace("Drag complete!");
        //trace("target = " + event.target);
        //trace("action = " + event.action);
        if (event.action != "none"){
         trace("woo!");
        }else{
         trace("put the drag label back into its original position");
         if (event.target.parent != _defaultParent){
          trace("put it back, you monster!");
          _defaultParent.addElement(event.target);
          event.target.x = _defaultX;
          event.target.y = _defaultY;
         }else{
          trace("ah... it's already in the right place... actually!");
      ]]>
    </fx:Script>
    </s:Button>

  • DROP FRAME MINIDV TAPES

    Hey guys, I've got some MiniDV tapes that a client gave me that seem to all have a glitch where the tapes won't play audio and are skipping frames continuosly. The tapes are all labelled "drop frame" and "avid output". They are not playing in the DV deck (JVC) so it's actually not a FCP question. Does anyone know what this is?

    As Wes said, it could very well be a dirty head(s) or misalignment problem. But are you certain the material on the tape is actually DV and not some other format? I've seen DVCam and DVCPro recorded onto MiniDV tapes in a pinch and while some DV VTRs will play DVCam footage, they don't always playback other formats.
    -DH

  • Dropped frames from XDCAM EX HD (1080/24p) - Seems like a bug in FCP 6.

    We're editing XDCAM EX HD (1080/24p) using the built in easy setup and dedicated built in drives as scratch disks. We have run all software updates and have the latest builds of final cut...
    We keep on experiencing dropped frames on playback, but only on our NEW 8 core Mac Pro not on any of our other Mac's including our MacBook's.
    Through a painful process of elimination, we found out that if you go to System Settings/Playback Control and you switch Gamma Correction from Accurate to Approximate it solves the problem. We have no idea why and would love an answer from Apple on this.
    Moreover is this a bug or do we need to amend something on our system. As a note we've already matched pairs on the RAM and done all the other obvious stuff.
    Regards
    Daniel

    Having the same issue with same format footage (1080/24p), the proposed solution works (a little). I can definitely playback a longer duration but it still drops frames. Even when putting a filter on and rendering it still drops frames.
    Mike

  • Capture still frames from tapes

    I would like to randomly select frames from a couple of my tapes without having to capture all the footage. Is this possible?

    True. Still, while logging is a deliberate act, nothing says the trigger has to be what is on the footage.
    The OP could just be looking out a window and decide to hit the stop button to log a frame every time he sees a bird fly by (or some other 'random' activity).
    x

  • RMAN recovery from tape and disk?

    Hey Guys,
    Here is my scenario: -
    I have Oracle 10g and I am using RMAN to backup to disk and then I use Networker to backup on tapes from disk (retention is set to 30 days on tapes). On RMAN - my retention policy is set to recovery window of 5 days after which it deletes the obsolete backup from disk and updates the control file.
    My Questions:
    1. If I have to recover any datafile or tablespace 20 days ago how can I restore it on Production. Since I am also backing up control files on tapes but my current control file will not have 20 days old information. Is there any way that I can restore my old backup?
    2.How can I test my tape backup which is older than 5 days. In other words how can I restore my database from tape on another server/
    Please suggest.

    If you need to restore the whole database to a point in time that is 20 days old, you "only" need:
    1. to identify the right control file backup
    2. restore this control file backup with Networker
    3. start the instance in mount mode
    4. list required datafiles and archived redo logs backup sets listed in this control file with LIST BACKUP
    5. restore these backup sets with Networker
    6. restore and recover database with RMAN with the right SET UNTIL clause.
    If you need to restore only 1 tablespace, that's Tablespace Point In Time Recovery (TSPITR) and is another story.
    I don't think you can only restore 1 datafile that is 20 days old and leave other datafiles up-to-date (unless there is only 1 datafile in the tablespace and in this case this is TSPITR).

  • How do I create a freeze frame from footage and extend that for 5 seconds?

    I have a quicktime screen grab movie I've imported, and I want to hold on a certain frame that's at the very beginning of the clip, and then proceed with the movie when the voiceover (separate soundtrack) gets to a certain point.
    iMovie 11.
    Thanks
    doug

    Hi Doug,
    Position the playhead/skimmer (vertical red line) at the very beginning of the clip. The playhead should snap to the first frame, provided you have this turned on in the menu item View > Snap to Ends.
    Without moving the playhead, right-click (or Control-click) and select Add Freeze Frame from the pop-up menu. The default duration is 4 seconds (although this setting can be changed for individual projects in File > Project Properties). To adjust the duration in the timeline, double-click on the freeze frame to open the Inspector. In the Clip tab you can change the duration by typing in a new time.
    John

  • Avoiding dropped frames with Matrox and HD Video

    What is the best hard drive configuration to avoid dropped frames when using a Matrox MXo2 mini for HDMI outpjt to a high res monitor/tv? I am experiencing slow performance with the four drives in my Macpro 3,1  3Ghz 30GB Ram  Nividia Cuda card. I am after about 200-250 MBytes/sec transfer speeds. Can I do this with two identical disks in my Macpro and configuring them for Raid 0.  Or do I need to do it externally?  I have increased speed to about 120 MBytes/sec by using a Esata card and connecting into to a Lacie 2TB Big disk,configured for Raid 0 . I need to go a bit faster than this....especially if I want to use premier

    Those are nice looking enclosures and in general I like OWC. I've been using their stuff since before the turn of the century.
    But in this case, I don't think you'll get the speed you're looking for because they are using eSATA and muxing the data over a single cable. It's a flexible solution, but not a very fast one. To re-iterate, the two flaws I see are:
    1. SATA II disk speed, and
    2. a single eSATA cable
    This could theoretically provide 300MB/sec, (they have a benchmark that is around 250) but don't look for it day-in, day-out. As the drives fill up and reality settle in I doubt you'll see the numbers you want. BUT...  maybe it'll provide enough. 
    Instead, take a look here:
    SATA Enclosures - PC PitStop
    Not quite as sassy looking, but I've had the first enclosure shown running with four spindles and a SFF-8470 multilane cable since 2006. And it still benches over 250MB/sec mostly loaded on the original drives.
    Any of the enclosures on that page will support SATA III drives and they offer a variety of controllers.This isn't a big shop but they know what's up. Call them.  I know I can build a RAID with their stuff that will cost about the same as the OWC box and be seriously faster.
    Hope this helps

  • Dropping frames from photo project in FCE

    Hi, I have a MBP with OS X 10.4.11 2.33 GHz Intel Core 2 Duo w. 2 GB 667 MHz DDR2 SDRAM.
    I pit together a 5 minute photo collage with music on FCE and it is dropping frames. I didn't think doing a simple project like this would be a problem on a Mac Book Pro. What settings should I look at in my system to make sure they are how they need to be. And, how do I restore the dropped frames to the video? Do I just re-insert the photos they were dropped out of?
    Also, as you can see I'm a bit new to Mac and FCE. So far when I've run into problems this is the first place I come, I do a search and if that doesn't answer my question I will then post the question. Let me know if there are any other valuable resources (sites, discussion boards) for Mac/FCE newbies like myself. Thanks.

    Hi(Bonjour)!
    What do you mean by dropping Frame ?
    Try to render your sequence before playback.
    Michel Boissonneault

  • FCP X drops frames resulting in thousands of clips

    I have a Mac Pro, 2 x 2.66 GHZ 6-Core Intel Xeon machine with 24 GB of  1333 MHZ DDR3 memory.
    I have both miniDV videotapes recorded on camcorders as well as on JVC recorder. I also have S-VHS videotapes recorded on the JVC recorder (which is a dual recorder, with the miniDV deck on the left and S-VHS deck on the right)
    Whenever I try to import video from either deck (or from a Canon Elura camcorder) into FCP X, I get thousands of separate clips ranging from a few tenths of a second in length to 20 seconds or so in length. When these clips are loaded into the timeline, there is a video and audio stutter whenever the playback cursor crosses between adjacent clips, indicating that a frame or two or more has been dropped. Making a compound clip is no help, the stuttering due to dropped frames persists. This makes it completely impossible to edit since no clip is long enough to be usable. The dropped frames seem to be due to the program, not the cameras, tape deck or videotapes since the problem occurs across all camera platforms as well as the two videotape formats.  It's as if FCP X has a hair trigger in identifying some variance in frame rates that it judges to be a dropped frame, and immediately terminates the import of that little clip and goes on to the next import, only to repeat the same process THOUSANDS OF TIMES. The problem persists whether I record imports to my SSD startup disk, to my internal RAID, or to peripheral disks.
    This did not happen in previous versions of FCP using the exact same video equipment and tape formats but a different computer. There seems to be no way to tell FCP X to ignore any variation of time code and I'm concerned that this problem will render my current equipment and videotapes worthless.
    Has anyone else had this problem to this degree? I've searched other threads on similar issues of a minor nature (separate clips every few minutes), and I've tried all the recommended maneuvers. I've never seen anything discussed about the type of problem I'm having.
    Does anyone have any ideas?
    Thanks in advance.

    Russ, thanks for your reply. It's unclear how joining clip fragments together with Streamclip would be any different than joining the clip fragments together in a new compound clip.?
    Luis, bom dia
    There appear to be no timecode breaks in the tapes. The duration of some of the shots is several minutes and when I watch the timecode display on the decks or on the camcorder, it appears to run smoothly. So any timecode break must be a millisecond or two. And for some reason, QuickTime gives an error message when I try to set up a new movie recording: "The operation could not be completed."

  • Going Back to the main frame, from inside a movie clip time line.

    In flash CS5 I want to go back to the main time line, from inside a movie clip button, so when i click the the movie clip it goes to another frame on the main time line..
    Can anyone help me?
    Thanks
    Daniel Derrick

    your can use _root to reference the main timeline from anywhere though that can lead to problems if your swf is loaded by another swf.  because of that eventuality, it would be better to use a relative path back to the main timeline.
    so, from a movieclip's timeline (when the movieclip is on the main timeline), you can use _parent to reference the main timeline.
    but even better would be to use no code on that movieclip's timeline and keep all your code on one timeline (the main one).

  • Dropped Frames in Viewer, and Hard Disk Questions

    Hi,
    I'm new to FCE (v3.5.1) having just upgraded from iMovie. I'm on a 2GHz Core Duo MacBook with 2GB RAM. I have a 120GB internal drive that has 16GB free. In my initial use of FCE, I've run into two problems.
    (1) I'm finding that frames are regularly dropped during playback in the Viewer - as much as half the time. The same video clips playback flawlessly in iMovie and in Quicktime. These frames are on my MacBook's internal hard disk and are each roughly a minute in length.
    I should note that these clips were exported from iMovie (I copied them out of an iMovie project file / package). Might this be causing the problem?
    (2) Also, I'm finding that the audio playback of these clips (that were copied from the iMovie package) is okay in the Viewer but not in the Canvas (I hear beeping) -- I found mention that the audio format of iMovie and FCE are different, so I expect I need to reimport these clips anyway. Is there an easy way around this?
    (3) I know I said two problems, but number 3 is a question, not a problem! Given my hardware setup described above, should I be able to get away with working with the clips located on an external Firewire hard disk? Or should I only work with clips located on my internal drive. Similarly, can I effectively work with a scratch disk that is external FW, or should I keep that on my internal drive?
    Thanks in advance,
    Tim

    (1) I'm finding that frames are regularly dropped during playback in the Viewer - as much as half the time. The same video clips playback flawlessly in iMovie and in Quicktime. These frames are on my MacBook's internal hard disk and are each roughly a minute in length.
    Need to know info more about the clips from iMovie.
    Clips coming into FCE need to match the Sequence settings. This is set up before a Project begins using the Easy Setups. My guess is there is a mis-match.
    2) Also, I'm finding that the audio playback of these clips (that were copied from the iMovie package) is okay in the Viewer but not in the Canvas (I hear beeping) -- I found mention that the audio format of iMovie and FCE are different, so I expect I need to reimport these clips anyway. Is there an easy way around this?
    The work around is to render, Command+R or Sequence>Render All from the menu.
    iMovie uses DV Stream and is a multiplexed format whereas FCE uses DV. The QuickTime files that FCE likes has the audio seperate from the video allowing them to be edited with or without the video.
    3) I know I said two problems, but number 3 is a question, not a problem! Given my hardware setup described above, should I be able to get away with working with the clips located on an external Firewire hard disk? Or should I only work with clips located on my internal drive. Similarly, can I effectively work with a scratch disk that is external FW, or should I keep that on my internal drive?
    Using FCE an External firewire is a much better option than your internal.
    Search this forum for Canon/LaCie, most users get in strife with this combo. Most other stuff seems fine.
    Before unloading $$ it's always best to do a bit of checking around.
    Al

Maybe you are looking for

  • Split valuation: how to close an annual PO

    Dear Experts, We need to change a non-split valuated material to split valuated mode by using the Valuation category 'X'. I  have done the required config. and cleared all of the stocks and reservations. Now we have one "annual" purchase order left (

  • How to generate SEO URLs in ATG 10.0.1..?

    how to generate SEO URLs in ATG.. pls explain how it works..? Thanks in advance, Vishnu & Nithin Kayithi

  • How GL CODE gets determined based upon the TAX Code

    Dear Sir, We request you to kindly guide about the follwoing query : In the PO we mention the TaxCode and the TAXCODE contain all the condition records . Subsequently for the Items being ordered we maintain the condition type using FV11 . my question

  • How to make parallax scroll with play audio event in specific areas

    Hello there, i would like to learn how can i play audio while scrol is in specific areas that i choosed. For example think that stage is 1920*5000 i want play audio when scroll is in 3000. I am using this code for parallax yepnope({ load:"http://cdn.

  • Change view in music ipad

    I may be stupid, but how does one gaet away from the idiotic album grid view to a more sensible list of items in any view on an iPad - in music?