Cannot capture, but can do pretty much everything else with deck. What now?

Hello everybody,
I'm writing for the Gateway Media Center. We're basically a small group of students which handles anything video or TV related for a public school district, mainly the high school. Our main editing system (Mac connected to a MiniDV deck via FireWire)is the subject of this post.
And we've got a bit of a problem. I've seen it at least once before on these forums, but no solution in that topic helped.
Basically, we can't capture video or audio with Final Cut Pro, but we can control the deck, watch audio levels coming from the deck within Final Cut, and even record edited material to tape with the deck just fine. We CAN capture with another application.
I'd like to say that NO, we have not updated anything within the past six months or so, at least not to my knowledge. (The problem started last week).
*_A detailed decription of what DOESN'T work:_*
Log & Capture window: The preview monitor within the window always shows the default color bars and the black horizontal band that roughly says 'Preview Disabled'.
*With device 'FireWire NTSC' selected:*
*Aud+Vid, Capture Now:* The black window with the whire Final Cut window opens. The bottom says 'Waiting for Timecode'. After this sits there for a few seconds, a message pops up and says roughly 'The operation could not be completed because there is no video'. The deck is automatically paused.
*Video Only, Cap. Now:* same as above^.
*Audio Only, Cap. Now:* Black window, bottom says 'capturing now', as it should, but when the Esc key is hit a message that says roughly 'ERROR: Final Cut could not read the movie file just captured' pops up.
*With 'Non-Controlable device' selected:* same as above, except that 'Waiting for Timecode' is replaced with 'Allocating Disk Space'.
*A detailed description of what DOES work:*
- Video and Audio go TO the deck, whether it's from Timeline/Canvas, Viewer, or Print to Video. I succesfully recorded an edit to tape just yesterday.
- The deck can be controlled with the JKL keys, the buttons on the Log & Cap. window, go to In point and even Batch Capture cues the tape correctly.
- Timecode is visible in the top right of the preview monitor in the L&C window, and it is the right timecode.
- Audio levels visible (in that stand-alone window which is usually to the right of the timeline) match what I'm hearing from the deck's analog monitor.
- Vidi, a simple little program, can record video which is manually cued with the deck. The saved video file(s) can then be successfully imported into FCP.
_*Trouble-shooting ALREADY attempted:*_
1) Correct turn on order: Shut everything down, unplug the deck's power, turn on and log into Mac, plug in deck and wait for it to wake up, turn the deck on, then launch Final Cut.
2) Check deck's input and output settings.
3) Unplug other FireWire devices. (We use an external hard drive connected on the same firewire bus. Not that it's ever been a problem)
4) Change Captrue Scratch location and make sure there's enough disk space.
5) Delete Final Cut Pro Preferences and that 'com.apple.finalcutpro.plist' thing.
_*Trouble-shooting NOT attempted:*_
1) Replace FireWire cable. I think it's safe to say the cable's fine since the computer can capture with Vidi, but I guess I should try this too, next time I get a chance.
2) Remove receipts and Re-install Final Cut Pro. (Really, a last resort.)
_*The specs:*_
Yes, this stuff is pretty old. Like I said, we're talking about a pulic school district, and the system usually suits us just fine.
FCP: Final Cut Pro HD (Academic) 4.5
+set up with the 'DV NTSC 48kHz' Easy Setup. Video playback on 'FireWire NTSC 720x480'. Yes, External Video All Frames.+
*The Mac:* PowerMac G4 (of what I believe would be called the MDD case model family)
OS: Mac OS X, version 10.3.9
CPUs: Dual 1.25GHz PowerPC G4, 2 MB L3 cache per processor
RAM: 1 GB DDR SDRAM
HDDs: Two drives, reportedly on the 'ATA-6' bus.
*The Deck:* JVC SR-DVM700 (3-in-1 MiniDV (with the 'PROFESSIONAL DV' logo), hard drive, and DVD-RW/RAM), 4-pin FireWire port connected to 6-pin port on Mac.
+Deck's Monitor:+ one professional CRT video monitor with built-in mono speaker, analog inputs directly connected to deck, made by JVC.
Sorry about the long post, I wanted to make it clear.
We're getting into a nice crunch as the school year is ending, and we really need to get this running. Any tips would be great!
Thanks,
Jake T.
+Gateway Media Communication Center / Gateway High School Video Club / Gateway Video Productions+

That makes sense, but our problem started last week - Final Cut captured fine before then.
And I don't think it's been updated lately, as 7.4.5 is the latest version of QuickTime for OS10.3.9. If an update caused the problem, wouldn't the update be to 7.4.5, and not 7.3.1?
Nevertheless, I'll try it.
Thanks,
Jake T.

Similar Messages

  • When i open a picture it opens at preview but "all my files" opens everything else with it , same happens with MS word when i open document every word document opens with it

    When i open a picture it opens at preview but "all my files" opens everything else with it , same happens with MS word when i open document every word document opens with it

    Hi MIXAYA,
    Thanks for using Apple Support Communities.  In OS X, by default apps will open with any previously opened documents opening as well.  To disable this feature, select "Close windows when quitting an application" from System Preferences > General.  To learn more, see this article:
    OS X Mavericks: General preferences
    http://support.apple.com/kb/ph13803
    Close windows when quitting an application
    If you quit apps with windows still open on your screen, selecting this checkbox prevents the windows from reopening automatically the next time you start their app.
    Cheers,
    - Ari

  • 911- textarea captured but can not displayed well on Browser with linebreak

    Please have a look at point 1 and answer point 2. Please do any suggestion
    1.
    Here is a test.jsp code:
    <script language="javascript1.2">
    function OK()
    alert(document.frm.textarea.value);
    return true;
    </script>
    <%
    if (request.getMethod().equalsIgnoreCase("POST"))
    out.println(request.getParameter("textarea"));
    else
    %>
    <form name="frm" method="post" onSubmit="return OK();">
    <textarea cols="10" rows="5" name="textarea"></textarea>
    <input type="submit">
    </form>
    <%
    %>
    2. when I enter
    this is a test
    thsss
    we get the msgbox display
    this is a test
    thsss
    which is OK.
    Now when we're back to the server, which send to the brower
    this is a test
    thsss
    but the Browser could not display as it is. On the browser, I use view source and see exactly whatever we entered
    (/n or /n/r)
    -- Paul.

    the esiest way to make it work is to use <pre></pre> tag. In your case it will look like
    <script language="javascript1.2">
    function OK()
    alert(document.frm.textarea.value);
    return true;
    </script>
    <style>
    pre{font-family:verdana;};
    </style>
    <%
    if (request.getMethod().equalsIgnoreCase("POST"))
    out.println("<pre>" + request.getParameter("textarea") + "</pre>");
    else
    %>
    <form name="frm" method="post" onSubmit="return OK();">
    <textarea cols="10" rows="5" name="textarea"></textarea>
    <input type="submit">
    </form>
    <%
    %>
    Notice that I used a style sheet to change the default font for <pre> (you can write your own style sheet). Good Luck.

  • Is there an app that runs on iMac that can display movies on an NAS drive as thumbnails? I have someone who cannot read but can select from pictures what they want to do or watch

    We have a person living with us who cannot read but can use our integrated AV systems with out TV's because it is all picture or thumbnail based
    For movies we have on a NAS drive I would like for the person to be able to connect to the NAS drive and choose a movie
    on the home AV system this is done using an interface that shows all the movies as a tile with a graphic, generally the DVD cover photo or similar
    I was hoping for something similar with the iMac
    thanks in anticipation

    The iPhoto app provides the capability to delete all the photos in the Camera Roll.
    See https://itunes.apple.com/us/app/iphoto/id497786065?mt=8

  • My friend gave my a jailbroken ipod touch with ios 8 and I accidently reset it and no the apple logo appears an the loading icon but that is pretty much it.. it wont to nothing more... and thing i can do to fix it??

    my friend gave my a jailbroken ipod touch with ios 8 and I accidently reset it and the apple logo appears and the loading icon but that is pretty much it.. it wont to nothing more... anything thing i can do to fix it??

    You can't get help here if it is jailbroken.
    Pete

  • IPhone 4S has lost sound on iTunes, films and pretty much everything since ios6 update!

    I updated to iOS 6 yesterday and since then I have lost all sound of my iTunes and films and stuff. There is no volume control available. It did work earlier for a brief time but stopped again. I have tried restarting, resetting and pretty much everything I can to resolve this but to no avail. Does any key have any ideas or have apple bugger up us iPhone 4S users? Please help its annoying me as I use iTunes a lot. Also I get no unlock sound or key clicks.

    Try a hard reset.....
    Press and hold the Wake / Sleep button and the Home button at the same time, keep them both pressed until the Apple Logo appears.

  • How do I retrieve my purchased songs and playlists from my iTunes account? I have just had to replace my hard drive and have lost pretty much everything!

    How do I retrieve my purchased songs and playlists from my iTunes account? I have just had to replace my hard drive and have lost pretty much everything!

    You can redownload your iTunes store purchases, but you'll need a backup to recover the playlists.

  • How to unjam my ipad? I cannot receive but can send so have to use main pc to receive

    I sent many photos to friends yesterday morning suddenly I noticed that I no longer receive mail into my inbox and the sent box was also frozen to that point. I can however still send more photos but had to go to my PC to receive my emails as I c.c. myself into all the emails I sent.  Is the ipad jammed because I sent too many phtos at one time? 

    You're funny, but also on my website and I do not bother you, who are you?
    发自我的 iPhone
    在 2014年11月7日,下午4:22,Apple Support Communities Updates <[email protected]> 写道:
    Apple Support Communities
    Gobilow has posted in the Using iPad community.
    How to unjam my ipad? I cannot receive but can send so have to use main pc to receive
    I sent many photos to friends yesterday morning suddenly I noticed that I no longer receive mail into my inbox and the sent box was also frozen to that point. I can however still send more photos but had to go to my PC to receive my emails as I c.c. myself into all the emails I sent.  Is the ipad jammed because I sent too many phtos at one time?
    To post a reply, go to the discussion in Apple Support Communities.                                                             
    You are receiving this email from Apple Support Communities. You can change your email preferences in your Apple Support Communities Profile.
    TM and copyright © 2014 Apple Inc. 1 Infinite Loop, MS 96-DM. Cupertino, CA 95014.
    All Rights Reserved | Privacy Policy | Terms of Use | Apple Support

  • I have a question. I don't know what happened, but my safari went from regular safari with google and now everything is yahoo. maybe it was firefox or something. I just want the regular safari back. Can someone help me?

    Frustrated!!!!!!,
    I have a question. I don't know what happened, but my safari went from regular safari with google and now everything is yahoo. maybe it was firefox or something. I just want the regular safari back. Can someone help me?

    Check the links below for options to remove the Adware.
    The Easy, safe, effective method:
    http://www.adwaremedic.com/index.php
    If you are comfortable doing manual file removals use the somewhat more difficult method:
    http://support.apple.com/en-us/HT203987
    Also read the articles below to be more prepared for the next time there is an issue on your computer.
    https://discussions.apple.com/docs/DOC-7471
    https://discussions.apple.com/docs/DOC-8071

  • My elderly mother hss EXTREMELY limited vision and is a technophobe. I am considering an iPhone with Siri.  Can I turn off everything else so she can use only the phone app and voice dialing and not accidentally open any other app and screw something

    My elderly mother has EXTREMELY limited vision and is a technophobe. I am considering an iPhone with Siri.  Can I turn off everything else so she can use only the phone app and voice dialing or Siri and not accidentally open any other app and screw something up.

    I'm asking, in all seriousness, why do you think your mother needs an iPhone? Honestly, if your mother is, as you described her, a technophobe, I would recommend against getting an iPhone or any other smartphone. I've spent a fair bit of time teaching older folks to use smartphones. If they are interested in learning, it's fine. If they have the phone because their kids or grandkids thought it was a good idea but they are afraid of the phone or not interested in its features, it doesn't go well at all.
    Many basic phones have voice dialing. Obviously, it doesn't do all the things Siri does but it may be much less intimidating for your mom. Also, basic phones have hardware keys. Even someone with limited vision can learn the keyboard on such a phone. From the sound of your first post, all she will be doing is making phone calls.
    Best of luck.

  • I have movie footage on a 16Gb Sd disk but can't access it on my iMac.  What am I doing wrong?

    I have movie footage on a 16Gb Sd disk but can't access it on my iMac.  What am I doing wrong?

    Well there wasn't exactly an overwhelming volume of help on that!
    Just so you know, having spent an hour talking to Apple and not making any progress I decided to wind back to a pre-server time machine backup.  Phew - everything is working fine again now but I don't have a server!
    Cheers
    Tom

  • When I connect my iPad2 to my tv using the AV adapter I can hear sound for everything else except for my movies. I can hear tv shows, music, videos off YouTube, etc. I just can't hear the movies. Any ideas of what may be wrong?

    When I connect my iPad2 to my tv using the AV adapter I can hear sound for everything else except movies. I can hear tv episodes, music, YouTube videos, etc. anyone have an idea of how to fix this issue? Thank you for your help in advance.

    Just connect the new iPod to your computer and setup the iPod via iTunes (instead of via wifi).
    If you want to copy all the infor from an old iPod touch to the inew iPod see:
    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device

  • Just upgraded to an iPhone 4s but can't get it to sync with my Outlook Calender I have downloaded iCloud but that does not seem to have helped/

    Can anyone help I have just taken an iPhone4s but can't get it to sync with my Outlook calender I have downloaded to my PC the iCloud software but that does not seem to have helped at all?
    Thanks Bazzer50

    Do you see your Outlook calendar on the iCloud website?
    Do you see your iCloud calendar on your iPhone?
    This Apple article is a good place to start -> iCloud: Troubleshooting iCloud Calendar

  • HT1848 I just downloaded music on my computer but can't get it to synch with my ipad.

    I just download music to my computer, but can't get it to synch with my ipad. Does anyone have a suggestion?

    iOS: Syncing with iTunes - Support - Apple

  • My apple tv main menu no longer displays the "movies" section, just internet, computers, and settings. Does anyone know why or how to get it back up? Recently rented a movie directly through apple tv but can't see the movies section in main menu now.

    My apple tv main menu no longer displays the "movies" section, just internet, computers, and settings. Does anyone know why or how to get it to show again? Recently rented a movie directly through apple tv but can't see the "movies" section in main menu now. WiFi and home sharing are working.

    Welcome to the Apple Community.
    Check the location setting for the iTunes Store is correct.
    You might also try restarting the Apple TV by removing ALL the cables for 30 seconds.
    Restart your router.
    If you are still having problems try a restore.

Maybe you are looking for

  • USB doesn't recognized by System Profiler

    Hello, I'm a MacOSX newbie and I'm trying to discover an error. I've got a problem with USB Controller device(i think the problem is in EFI partition) because when I insert different USB flash disks, no one appears in System Profiler. I'm using MacOS

  • Issues in WSDL Import

    Hi all, I'm trying to import a WSDL file into XI and I get this error Unable to convert imported document to WSDL Reason: Tag definitions cannot have an attribute version from namespace urn:ebay:api:PayPalAPI Check the selected category Kindly provid

  • HP Presario internet explorer problems

    I have a HP Presario NY541AA-ABA. I used to be able to view bills on their website, now for some reason when I click on them a window pops up and says internet explorer is not working and shuts down. If anyone can help I would appreciate any feedback

  • Command Tab cycles through open apps but does NOT load the window ??

    So I've got several apps running....Mail, Safari, iTunes. I hit command tab and tab over to the program I want and then RELEASE.....The program is displayed at the top of the toolbar but where is my window ??? Its still sitting at the bottom of the t

  • Idvd dvd size help

    Hi I'm trying to burn a movie on idvd but it is 4.5 gb I have a 4.7 gb disc in but i dvd says it is only 4.2 gb can't see how to change it