Possible solution for no preview and capture problems

We are part-time, intermittent users of FCPro - so numerous upgrades of QT, system10, FCPro have taken place since last we captured or did any editing. Seems like all our presets from former use have disappeared, leaving us starting fom scratch. Not using a sophisticated set-up, still capturing through the ADVC-100 with a non-controllable camera. All I know is, last time I captured, everything worked, and I never have had the option of device control.
After my struggling with the no preview issue all day, my husband DID do some maintenance stuff (delete preferences, repair permissions, etc) but I don't think that was a factor. Try the following (keep in mind, the ADVC is a pass-through "thing"(?)):
Audio/Video Settings
Capture Presets
Edit
Name: DV NTSC 48 Khz
Quicktime Video Settings: Digitizer DV Video
Input: DV-VCR
Quicktime Audio Settings: Device DV Audio
Please bother to post back if this solves your problem - then others will know it works.
Still having audio sample rate problem, so I may be back....

Using FCP 5.1.4 During the quest, I'm fairly sure we tried that repeatedly. I think the setting that made the difference between "working" and "not working" was the Quicktime (vers.7.2) setting for Input to DV-VCR. But you are right, I did need to reset the other setting in "capture now" screen to non-controllable device. I did look over past posts on this subject, and before I got cross-eyed from trying to digest too much techno-talk, I did seem to see a correlation with QT in people's observations.
Oh, and BTW, I wouldn't say it works like a charm - I keep having to go back to easy setup and re-choosing my settings. Sounds to me like something that is supposed to get re-set as part of the preview/capture procedure is actually re-setting the wrong variable, and creating a domino effect after that. There's bad code somewhere.

Similar Messages

  • A possible solution for "foreight language keyboard shortcut" problem...

    Hi(Bonjour)!
    Everyone know the problem of losy keyboard layout when Final Cut is used with foreight language keyboard. We loose the COMMAND-Q shorcut.
    As PieroF suggested in many posts in final cut express forum, there is a workaround:
    "+I just installed Leopard and I ran into this keyboard shortcut problem.+
    +I can confirm that:+
    +a. the problem exists also with the Italian keyboard (in addition to other languages, as pointed by other posters)+
    +b. the workaround I described in my previous answer works fine :+
    +- close FCE (if open)+
    +- open System Preferences/International/Language+
    +- drag English to the first place on top of the other languages+
    +- drag your own language (Italian in my case) again on top of English (at the end the window will show the same original settings, but something happened in the heart of Leopard...)+
    +- close System Preferences+
    +- open FCE: now all shortcuts work as expected, and are correctly listed with their corresponding menu commands+
    +It's a workaround, it's not convenient (I'd better have this bug fixed), but apparently you have to apply it only once for each system startup.+
    Piero "
    As stated by Piero, you have to follow this procedure after each computer startup.
    I found a way to restore the COMMAND-Q shortcut with the keyboard and mouse system pref panel.
    Simply add Final Cut application and add a +custom shotcut+. Be careful to type exactly the "Quit Final Cut Express" menu.
    This solution allows to restart the computer.
    It's work with Final Cut Express and Final Cut Pro under Leopard 10.5.4.
    Michel Boissonneault

    Hi Michel,
    I like your suggestion because the keyboard shortcuts defined in the system preferences do not require redefinition at each startup. So in theory we could define all missing/wrong shortcuts this way, and not only the cmd-Q as you suggested. Boring, but we could do it once for all.
    The only problem is that I don't know how to define shortcuts for submenus, for example "Render Selection/Both": it seems system preferences allows only to define shortcuts for the menu ("Render Selection" - in this case absolutely useless) but not for the submenu.
    Do you know a way ? (I looked in the help, which didn't... help).
    Piero

  • A possible solution for the version 7 sound problem..

    Please forgive me if this has incorrect terms & names. I'm not really clued up with computers.
    If you use Mozilla & use the music bar at the bottom of your browser, while using iTunes, when the music starts to mess up, press the stop button on the bottom of your firefox browser, then press play again.
    This hasd solved my bad sound problem for the past hour & a half. I had no problems since I did that.
    Hope this works for others.

    Please forgive me if this has incorrect terms & names. I'm not really clued up with computers.
    If you use Mozilla & use the music bar at the bottom of your browser, while using iTunes, when the music starts to mess up, press the stop button on the bottom of your firefox browser, then press play again.
    This hasd solved my bad sound problem for the past hour & a half. I had no problems since I did that.
    Hope this works for others.

  • PrintWindow api with possible solution for capture screenshot Google Chrome window

    Hi,
    as all you know, PrintWindow api give us a black image when us want a capture screenshot  of Google Chrome window. So, a friend said me that a possible solution for this problem is: 
    Reduce Google Chrome window for -1px in both sides and after this, reset  to original size. And so, will repaint again.
    Based on code below, someone could help me make this? sincerely I don't know where begin.
    [DllImport("user32.dll", SetLastError = true)]
    static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
    [DllImport("user32.dll", SetLastError = true)]
    static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);
    [DllImport("user32.dll")]
    private static extern IntPtr GetDC(IntPtr WindowHandle);
    [DllImport("user32.dll")]
    private static extern void ReleaseDC(IntPtr WindowHandle, IntPtr DC);
    [DllImport("user32.dll")]
    private static extern IntPtr GetWindowRect(IntPtr WindowHandle, ref Rect rect);
    [DllImport("User32.dll", SetLastError = true)]
    [return: MarshalAs(UnmanagedType.Bool)]
    static extern bool PrintWindow(IntPtr hwnd, IntPtr hDC, uint nFlags);
    [StructLayout(LayoutKind.Sequential)]
    private struct Rect
    public int Left;
    public int Top;
    public int Right;
    public int Bottom;
    public static Bitmap Capture(IntPtr handle)
    Rect rect = new Rect();
    GetWindowRect(handle, ref rect);
    Bitmap Bmp = new Bitmap(rect.Right - rect.Left, rect.Bottom - rect.Top);
    Graphics memoryGraphics = Graphics.FromImage(Bmp);
    IntPtr dc = memoryGraphics.GetHdc();
    bool success = PrintWindow(handle, dc, 0);
    memoryGraphics.ReleaseHdc(dc);
    return Bmp;
    private void button1_Click(object sender, EventArgs e)
    IntPtr WindowHandle = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Chrome_WidgetWin_1", null);
    Bitmap BMP = Capture(WindowHandle);
    BMP.Save("C:\\Foo.bmp");
    BMP.Dispose();
    Any suggestions here is appreciated.

    Hello,
    I would prefer capture the screen rather than get it from that application directly.
    It has been discussed in the following thread.
    Is there any way to hide Chrome window and capture a screenshot or convert the Chrome window to image?
    In this case, you could remove the line "ShowWindowAsync(mainHandle, 0); " since you don't want to hide it.
    using System;
    using System.Runtime.InteropServices;
    using System.Diagnostics;
    using System.Drawing.Imaging;
    [DllImport("user32.dll")]
    private static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
    [DllImport("user32.dll")]
    public static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);
    [DllImport("user32.dll")]
    public static extern bool PrintWindow(IntPtr hWnd, IntPtr hdcBlt, int nFlags);
    public WhateverMethod()
    //initialize process and get hWnd
    Process chrome = Process.Start("chrome.exe","http://www.cnn.com");
    //wait for chrome window to open AND page to load (important for process refresh)
    //you might need to increase the sleep time for the page to load or monitor the "loading" title on Chrome
    System.Threading.Thread.Sleep(4000);
    chrome.Refresh();
    IntPtr mainHandle = chrome.MainWindowHandle;
    RECT rc;
    GetWindowRect(mainHandle, out rc);
    Bitmap bmp = new Bitmap(rc.Width, rc.Height, PixelFormat.Format32bppArgb);
    Graphics gfxBmp = Graphics.FromImage(bmp);
    IntPtr hdcBitmap = gfxBmp.GetHdc();
    PrintWindow(mainHandle, hdcBitmap, 0);
    gfxBmp.ReleaseHdc(hdcBitmap);
    gfxBmp.Dispose();
    bmp.Save("c:\\temp\\test.png", ImageFormat.Png);
    ShowWindowAsync(mainHandle, 0);
    [StructLayout(LayoutKind.Sequential)]
    public struct RECT
    private int _Left;
    private int _Top;
    private int _Right;
    private int _Bottom;
    public RECT(RECT Rectangle)
    : this(Rectangle.Left, Rectangle.Top, Rectangle.Right, Rectangle.Bottom)
    public RECT(int Left, int Top, int Right, int Bottom)
    _Left = Left;
    _Top = Top;
    _Right = Right;
    _Bottom = Bottom;
    public int X
    get { return _Left; }
    set { _Left = value; }
    public int Y
    get { return _Top; }
    set { _Top = value; }
    public int Left
    get { return _Left; }
    set { _Left = value; }
    public int Top
    get { return _Top; }
    set { _Top = value; }
    public int Right
    get { return _Right; }
    set { _Right = value; }
    public int Bottom
    get { return _Bottom; }
    set { _Bottom = value; }
    public int Height
    get { return _Bottom - _Top; }
    set { _Bottom = value + _Top; }
    public int Width
    get { return _Right - _Left; }
    set { _Right = value + _Left; }
    public Point Location
    get { return new Point(Left, Top); }
    set
    _Left = value.X;
    _Top = value.Y;
    public Size Size
    get { return new Size(Width, Height); }
    set
    _Right = value.Width + _Left;
    _Bottom = value.Height + _Top;
    public static implicit operator Rectangle(RECT Rectangle)
    return new Rectangle(Rectangle.Left, Rectangle.Top, Rectangle.Width, Rectangle.Height);
    public static implicit operator RECT(Rectangle Rectangle)
    return new RECT(Rectangle.Left, Rectangle.Top, Rectangle.Right, Rectangle.Bottom);
    public static bool operator ==(RECT Rectangle1, RECT Rectangle2)
    return Rectangle1.Equals(Rectangle2);
    public static bool operator !=(RECT Rectangle1, RECT Rectangle2)
    return !Rectangle1.Equals(Rectangle2);
    public override string ToString()
    return "{ + _Left + "; " + " + _Top + "; Right: " + _Right + "; Bottom: " + _Bottom + "}";
    public override int GetHashCode()
    return ToString().GetHashCode();
    public bool Equals(RECT Rectangle)
    return Rectangle.Left == _Left && Rectangle.Top == _Top && Rectangle.Right == _Right && Rectangle.Bottom == _Bottom;
    public override bool Equals(object Object)
    if (Object is RECT)
    return Equals((RECT)Object);
    else if (Object is Rectangle)
    return Equals(new RECT((Rectangle)Object));
    return false;
    And the key method used is the one shared in
    Get a screenshot of a specific application.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Buy my problem of camels Store Lee games possible solution for me my problem?

    Buy my problem of camels Store Lee games possible solution for me my problem?

    This worked for me, sort of. A while back when I downloaded that windows update that installed the new version of IE, I noticed that IE wouldn't connect to the internet and pages wouldn't load. However, I thought nothing of it because I use Firefox and FF was working just fine.
    I went into IE earlier this evening (it still wasn't working) and tried to follow your recommended steps. I got up to step 4 and IE froze. I tried closing it, reopening it and repeating the steps but it would always freeze at step 4. In another thread, someone was saying that iTunes released a security update and that fixed the store for them so I tried opening Apple Software Update and that froze. I tried it several times, nothing. Would always freeze. I even tried updating thru iTunes and IT would freeze.
    Finally, I went to the control panel and uninstalled IE7. The iTunes store and the Apple Software Update program are now working! So thank you very much for your suggestion. Otherwise, it may have never clicked with me that IE was the problem.
    Windows XP

  • An SAP Solution for capital planning and Budgeting of Capital Assets?

    Is there an SAP Solution for the Planning and Budgeting of Capital Assets?
    A solution that provides planning, budgeting, and tracking for capital assets through the entire life cycle of each asset, from the initial request through the final disposal.
    The solution needs to be able to run “scenarios.” A scenario contains equipment that may potentially be purchased. Scenario items are used to help determine cost, capacity, and cash flow feasibility.

    Hi
    What you suggested is the ideal approach...
    However, if they say that the budget allocated to capital purposes (70%) applies to both capital projects and expenses and they would like to control it together, but have reports separately, it is not possible with standard SAP...
    If they want to have just one IO for both cap and exp, You can suggest them a work around to capture CAPITAL or EXPENSE in a ref field (XREF1 in BSEG) and you can run KOB1 with XREF1 displayed in it....
    In standard KOB1, XREF1 is not displayed, you have to use Exit COOMEP01 to include the fields you want... Add XREF1 to the Structure CI_RKPOS and write your code in the include ZXKAEPU01 of EXIT_SAPLKAEP_001
    Without an identifier @ the time of booking the transaction in the system (Either by way of IO or a ref field), you wont be able to generate reports later on
    Regards
    Ajay M

  • Possible fix for errors 11503 and 50

    Here's a possible fix for Error 11503 and for error 50.
    It worked for me and hopefully it will work for you.
    I believe this error is caused by the incomplete downloading of either an update to an app. In my case it was caused by closing the lid on my laptop when I was downloading app updates on a very slow internet connection in a hotel.
    Anyway, here is what I did that fixed it completely.
    Close iTunes.
    Go to this folder : /iTunes/Mobile Applications/Downloads
    You'll find tmp files there. Drag them out of this folder to a temporary folder on your desktop. The Downloads folder should now be empty.
    Restart iTunes.
    All should be fine.
    If it is, delete the desktop folder with all the temp files.
    If it's not, then I can't help further, but that's what worked for me.

    Several possible causes from the info you gave
    Battery level low - recharge it for at least 4 hours till the full charge sign displays (2 prong icon instead of lightning icon).
    Time to Reset the iPod - Press the Menu and center Button for about 10 secs till the Apple logo comes ON, then let go of the buttons.
    your hardisk is starting to give problems, hence the skipping and some song refuse to play. - Do a disk diagnostic - follow this post by tt2.
         https://discussions.apple.com/message/17028567#17028567
    If you have updated any sofware application in Windows, then follow this Apple support procedure
    http://support.apple.com/kb/TS1539
    Most likely you have to do all, as the iPod hardisk filesystem would have been corrupted, or else the iPod Reset would bring it to normal operation.
    Good Luck!

  • Need a solution for integration BPM and UCM 11.1.1.4?

    Hi all,
    Currently, I am using BPM & SOA 11.1.1.4.
    Could somebody advise me a solution for integration BPM and UCM ?
    I heard somebody said that need to wait to BPM 11G patch set 5 (11.1.1.6) version, which have basic BPM and UCM integration and haven't to using external API like RIDC or CIS.
    Thanks & Regards.
    Ming Nguyen.

    Do not use prebuilt binaries, but compile the package from source with the current libudev.
    sha256sums=(SKIP)
    source=("$pkgname::git+https://github.com/rogerwang/node-webkit.git#tag=nw-v$pkgver")
    to build it in the PKGBUILD, use nw-gyp i guess.
    Last edited by progandy (2013-06-21 22:54:36)

  • Preview and capture at 1/4 speed

    I AM IMPORTING VIDEO INTO IMOVIE HD AND OVER TOP THE CONTROLS IS SAYS WHEN PREVIEWING HD AT 1/4 SPEED AND WHEN I HIT IMPORT IT SAYS CAPTURING AT 1/4 SPEED. HOW CAN I CHANGE THIS TO PREVIEW AND CAPTURE AT NORMAL SPEED VERY FRUSTRATING,
    I AM IMPORTING HD VIDEO 1080I HDV USING A CANON VIXIA HV30
    ANY HELP WOULD BE GREAT
    THANKS

    Importing speed is related to your computer processor and what it can handle. Have a look at David Babsky's posts in this thread to see if this helps:
    http://discussions.apple.com/thread.jspa?messageID=6611855&#6611855

  • Log and capture problems for HDV using FCP 5.0.1

    I cant seem to get a picture in my log and capture browser when using HDV. The screen says my camera is connected, I see timecode correctly rolling in sync with my cameras timecode, I can use the controls, but no picture on the screen?
    When I hit capture now, the capture screen pops up and gives a message "waiting for data from device".
    we shot at 720p at 25fps, there is no capture preset for this in my version of FCP. Could this be the problem? Please help!!

    Thanks for responding.
    It's a mac osx 10.4.11 and a 2 ghz intel core duo. I'm using easy set up in final cut pro, but there is no option for hd fire wire basic (which apple support told me to look for). The only hd options are 1080i50, i60 and 720 p30. The other hd options are for the apple intermediate codec. When I use the easy set up for hd 1080i60, then go to log and capture, it doesn't give me the preview window to set in's out, batch capture etc. It only lets me capture straight from the camera and I have to manually stop it and start it which is a major pain. Plus the clips need to be rendered once I put them in a timeline. I've shot and edited on mini dv with final cut for nearly 7 years, but now that i've tried to upgrade and shoot hd mini dv, all of these problems have arrived in capturing. I'm starting to think my version of final cut pro (5.0.1) just doesn't work with hd, unless it's very time consuming. Any ideas?

  • Possible solution for headphone problems with Mac Mini

    A month or two ago, I posted a question about problems I was having with getting earphones and earbuds to work with my mid-2010 Mac Mini. I just wanted to share the (quite simple) solution that solved my problem.
    My problem: I couldn't get any earphones or earbuds to work with my Mini, despite my trying several different sets. Finally I took my Mini into the local Apple store.
    Solution: Though it was not stated in any Apple support literature or postings online, the solution was to push the mini-jack into the audio out port until the mini-jack clicked. I was just being too cautious. I was pushing the mini-jacks into the port (which were in the back of the Mini, so I couldn't get a good handle on what I was doing, since the Mini's back was facing away from me). I wrongly thought I'd pushed as far as the jack(s) should go. Not so. I should have pushed harder until there was a 'click' and the mini-jack was all the way in. Once that was done, no problem.
    Chalk it up to my stupidity or to a lack of detail in Apple's support and help literature, but that was the solution.  I hope this helps others with similar audio out issues.

    Thanks for the response but I think maybe you missed part of my post.  The keyboard works fine with my mac book and with my son's macbook.  The keyboard is actually working right now.  It has been a problem with shut down and then strart up.  I think that I went through all those other SMC and PRAM efforts with Apple support and actually many others and they were completely stumped.  I think that this is a complicated problem for which there may only be a work around but I am hopeful that the next time I shut down, it will work.  I appreciate ideas but if my 4 or 5 hours with Apple support cannot help, I do not believe this is going to be a simple solution but if someone has encountered this or something similar, I would welcome their ideas.  I have gone to the Apple Store in Madison, WI on several occasions and unfortunately I often know more than the people that help me so I am reluctant to go there and to trust the staff at the genius bar.    For example, I recently purchased and Apple watch and the first person that helped me did not know how to turn it on and the second person did not know it came with two different length bands, and I once bought a case for my iphone and the person who helped me was more interested in the color than in the functionality of the case.  I could go on but I am not confident in the competence of the staff there so I am hoping that someone in the support community can help me.

  • Is it possible to scan without preview/ image capture??

    These programs are useless for scanning. Every time I try to scan something it automatically guesses where the image is cropped. It gets it wrong almost every time and there is no way of turning it off.
    I tried clicking the more details button but my scanner sends an error message whenever I do. Therefore both Preview and Image Capture are stuck in basic mode. I also tried finding Epson Print/ Scan software and new driver updates by Apple, but no joy there I'm afraid.
    I have an Epson DX4400, it works fine - but only with Preview and Image Capture. It won't work with any other programs I know of (such as Photoshop etc). As far as I'm aware there's no TWAIN driver available, so how is it possible to scan without doing it through Preview?
    This *****!

    Hi DLThomas & welcome to discussions...
    Have you taken a look at VueScan...best out there that I know of - seems to do everything scanning related well - tons of options without the compatibility grief.
    http://www.hamrick.com/
    Grab the demo and see for yourself if it meets your workflow, etc.
    Good luck in any case.

  • Invalid ELF Heder [possible solution, for the unlucky]

    well i duno whre to post this, but whatevr..
    [woffle]
    yesterday i found that for whatever reason a lot of apps stop working ,
    and instead started complaining about libc.so..6 having an invalid ELF Header... [?] i dunno, that was before and after the upgrade to the 2.5 version...
    anyay, i googled it and found a few random users with this problem, so i knew it had nothign to do with anything.. prolly just the unlucky ones lol..
    [possible solution]
    anways... i managed to fix it [i think] by linking /usr/lib/libc.so.6 to /lib/libc.so.*2.5 instead of /usr/lib/libc.so
    [add]
    /usr/lib/libc.so is an ld-script btw. duno if it should be that way..
    i'd file a bug report, but as i said.. it just happened out of teh blue, i did no sys up/down-grades , compiles, nothing... apart form install kdebase to get kate...

    Hi Florin,
    Check person type useage also. coz When Employee.Ex-Applicant' person type changes to 'Employee.Applicant', no other actions can be processed for that person.
    Kind Regards,

  • When will Firefox have a solution for the 'McAfee site advisor' problem in the new version 5 of the browser?

    I love Firefox and always keep it updated with the latest version, but the new version 5 keeps saying that McAfee Site Adviser will be disabled when I upgrade. So, I haven't downloaded the upgrade. I also love and depend on my site adviser and I'm not willing to loose it. Is Firefox working on a solution for this problems and if so, when do they expect to have a solution in place?
    Thanks for a reply,
    Wendy Ragsdale
    Clearwater, Florida

    Wendifly
    Isn't that sweet! You found a solution & the problem is solved. Now would you care to enlighten the rest of us here?

  • A possible solution for pushing subscribed calendars to iOS devices

    This one has been bugging me for a while and the solutions I've found here and elsewhere didn't work for me.
    The problem: I subscribe to four sports schedules via iCloud. I have them set up on an iMac running 10.9.5 and all are configured as iCloud subscriptions. All events show up on the iMac and also on my MacBook. Events from two of those calendars would show up on my iOS devices. Two would not.
    Looking into it today, I noticed that on the two that worked, the URL for the subscription (the "subscribed to" field when you do Get Info for the calendar on the Mac) is a URL that ends at the file suffix ".ics". The two that did not work had HTTP parameters that followed the ".ics" at the end (a '?' after ".ics" and a bunch of text following).
    On the iMac, I tried removing the parameters so that the URLs ended in ".ics" for those two calendars.  And just like that, all of the events now show up on my iOS devices.
    Just thought I'd put this out there in case it is the same situation others are running into.

    I've done something similar, but I couldn't never get rid of the buffer delay. I had to go to UDP and a custom sliding window protocol, but the the clients have firewall troubles.
    TCP stream, client opens?

Maybe you are looking for

  • Cannot Print PDF Files on Reader 9.4.0!

    I recently updated the drivers on my Brother MFC-420CN printer to the Vista drivers so I could scan multiple pages at once, however, now I can no longer print PDF files!!!! I tried to roll-back to the old drivers and it still doesn't work, I can prin

  • Pages keeps asking for registration code. Help!!

    I had downloaded a 30 day free trial of Pages before I actually bought it and now that I bought it, it keeps asking for a registration number but I don't have one since I bought it off the Mac app store. I cant save any documents or anything! Can som

  • Zen Touch... giving up the gho

    Hi all, long time no see - board's grown quite a bit since last I was here...! My 20gig Zen Touch seems to be getting confused in its (relati've...) old age, and often thinks I've pressed the 'random play all' button when in fact I've just pressed 'p

  • Defaukt gmail in adobe reader xi

    The error message I get is there is no email program associated to perform this action. How do I get the program to change or must I save the file and then attache it in an email message?

  • Unable to get AM object of an External LOV Region in CO of the Main Page.

    Hi , I have a requirment to add dynamic where clause to a LOV VO. LOV field details: ======= External LOV region is attached to the field. No Controller External Region Lov region has one AM attached. The LOV AM is not extended in the Main Page AM. C