No preview on external monitor and histograms black?

Hi, im having a problem with previewing. In the upper left room i see the footage (also changing when grading) but the rest of the rooms and my preview monitor are black. Histograms are not working.
Rendering and sending it to final cut works.
Im using a blackmagic decklink card for the output of the external monitor. Footage comes from the RED, 2K.
A colleague has the same mac pro but is using the older cinema screens. He has no problems. I use the new 24". Could that be the problem?
Does anyone has a idea what is going wrong?
Thanks.

Ummmm.....
mismatched display settings between COLOR and the BM card?
jPo

Similar Messages

  • FCP Problem with Firewire output to external monitor and speaker ???Help

    i have a g5 powermac. the problem is when using Final cut pro 4hd. when i output my work through firewire to my external monitor and speaker i have a problem with the audio signal. Theres feedback/noise/hiss from the speakers. The firewire connects to DSR-11 vtr deck which feeds my monitor and speakers. it only happens when in FCP is set to A/V firewire output. does not happen if Video output is not set to firewire.
    I Diagnosis is that it is not my dsr-11 deck or firewire i've ruled those out. The problem is either FCP software or Hardware problem with my G5
    Does anyone have a similar problem. please respone, i will try to answer any respones,
    Thanks
    powermac g5     powermac

    CaptM
    From the firewire that feeds the dsr-11. on the output, i use s-video cable to my monitor (sony pvm-14l) and High Quality rca cables thet feed the audio to the Roland Speakers.
    I've changed all wires and still have audio problem. I,ve changed my Dsr-11 deck to my camcorder and still have the problem.
    If any of u guys use FCP The problem happens When I select view> external Monitor > and select firewire for Audio/ and video. I have never changed my editing habits, something just went wrong with the signal, I think its a Hardware problem with the firewire connection. I'm Going to have to bring this to a Apple Service Center In my local area one day.

  • Using the MacBook Pro with external Monitor and Keyboard

    This may be a dumb question, but here it goes anyway:
    Can I use the MacBook Pro with an external monitor and a bluetooth keyboard and mouse without having it opened all of the time ?
    I am planning to buy a MacBook for my wife and most of the time she will be using it at her home office.
    I don't want her to use the computer opened all of the time when she is actually looking at the separate screen and using a separate keyboard. Having the laptop opened will only accumulate dust and reduce the lifetime of the built in screen.
    What I would actually need is a kind of "docking station", but Apple doesn't make that - I know.
    So can the MacBook at least be operated without the internal screen powered on while it is closed?
    Thanks for your help
    Martin
    Message was edited by: mdopp

    Yes - it's called clamshell mode:
    http://support.apple.com/kb/HT3131

  • Using the GT70 with external monitor and lid closed

    I wasn't sure where to post this question.
    I have several laptops and use external monitors. I close the lid on the laptops and the display continues to work.
    On the GT70, the system shuts down. It won't allow me to use the external keyboard and mouse or display the session.
    Any suggestions if there is a configuration option to allow the GT70 to continue to function with external monitor and lid closed.

    Yup. This is a windows setting. You need to go into your control panel -> power options -> "Choose when the computer sleeps" and "Choose what closing the lid does"
    That should solve the problem. I currently have my GT70 hooked up to a 42" TV and I can close the lid and it stays on and the TV continues displaying as well. No problems. =]

  • MacBook Pro with external monitor and keyboard.

    Hello, everyone.
    I've tried to find the answer for this question but haven't found a clear answer with my Google search.
    My older Powerbook G4 will not allow me to work with an external monitor and keyboard with the screen in a closed position. I am about to purchase a new MacBook Pro and would like to be able to use it at home with a larger monitor and keyboard but with the lid closed and its built-in screen turned off. Can this be done ?
    How can a MacBook Pro be used (turned-on) with external monitor and keyboard while the lid is closed and the its screen is off ?
    Thank you in advance for your answers.
    Joseph

    Hi Niel,
    I have the same problem with my MacBook and I followed the instructions you posted. My issue is that when the computer wakes up after clicking the buttons on the keyboard it then quickly goes back to sleep. I can't seem to keep it awake when the lid is closed. I've been searching for an answer without any luck. Any idea how to solve this problem?
    Thanks!
    P.S. After I finished posting this message I figured out my problem. While fiddling with my computer and monitor, I inadvertently disconnected the power. After reconnecting the power, I was able to wake my computer and keep it awake. A note to other people having this issue: the computer must be connected to a power outlet to run in closed mode.
    Message was edited by: qwertyphd

  • External Monitor and LXDE

    I run Arch + LXDE on my laptop and everything works great. Recently, I attempted to attach my laptop to an external monitor and use lxrandr to output only to the external. When I first tried it, the output worked fine but I was unable to adjust the resolution on the external monitor to anything greater than the best resolution I can get with my laptop. After restarting X, though, I was able to get max possible resolution on the external. However, this does not happen automatically, and every time I attach the monitor I have to reset the resolution to the best possible. Also, PCManFM only displays the desktop on a portion of my monitor equivalent to the laptop resolution (1280x800) even though the laptop monitor is disabled by lxrandr. The rest of the desktop is just openbox; when I right click on it, I get the openbox menu. Furthermore, when I attempt to switch to an agetty, the display is not aligned and most of the left side of the output is cut off. However, if I open the laptop, the agetty output works nicely there.
    The agetty problem doesn't surprise me because that has nothing to do with Xorg, but it would be really nice if everything just worked. I have tried looking for similar problems (and solutions), but I can find very little information. I would like to have PCManFM put the desktop on the whole display, I would like to have the best resolution automatically when I plug in the external, and (maybe) I would like to be able to use the agetty terminals when I just want to work from the terminal.
    Thanks!

    I want to avoid setting up a xorg.conf file, and arandr works pretty much the same way as lxrandr. So I decided to write a simple script that I could run at startup to automatically set the resolution of all attached monitors to the maximum possible. Here is the script, and I can run it from /etc/xdg/lxsession/LXDE/autostart:
    #!/bin/bash
    query=`xrandr -q 2>/dev/null`
    screens=`echo "${query}" | grep '^[A-Za-z].*' | sed -e '/^Screen.*/d' -e 's/[ \t].*$//g'`
    c=0
    for s in $screens; do
    screenarr[$c]=$s
    c=$(($c+1))
    done
    displaylines=`echo "${query}" | grep -n '^[A-Za-z].*' | sed -e '/^[0-9]:Screen.*/d' -e 's/:.*//g'`
    c=0
    for i in $displaylines; do
    resline=$(($i+1))
    res=`echo "${query}" | grep -n '.*' | sed -e "/^$resline:[ \t].*[0-9]/!d" -e 's/^[0-9].*: *//' -e 's/ .*//'`
    if [ "$res" != "" ]; then
    xrandr --output ${screenarr[$c]} --mode ${res} 2>/dev/null
    fi
    c=$(($c+1))
    done
    I wrote this really quickly so if anyone has an suggestions for improvement that would be great. I am hoping to generalize this so that you can pass it simple parameters to have some control as to how your monitors are configured. Also, if you have a better way to extract the monitor information than from xrandr -q and regex that would be a huge improvement.
    When run from autostart before PCManFM, PCManFM fills the full screen with the desktop.

  • No video when using external monitor and resuming from sleep.

    I know some people were having problems with the new MacBooks, but I guess the Mac driver fixed something. However, when I'm in Windows and have my Dell 24" hooked up to the Mini DisplayPort -> DVI adapter, I cannot resume from sleep. The monitor will turn on, but I can't get an image on it.
    In MacOS it seems to resume from sleep fine, but not in Windows. Anyone else seeing this?
    Thanks!

    Is no one else getting this error? Does anyone have any issues when their MacBook is hooked up to an external monitor and it goes to sleep?

  • Preventing SLEEP when using External Monitor and Keyboard

    Prior to Leopard, whenever I had an external monitor and keyboard attached and closed the MacbookPro lid the system would not go into SLEEP mode. Now it does.
    What's to be done to prevent this from happening?

    PS.... when this last occurred, the backup drive for Time Machine disconneted when SLEEP was invoke by closing the lid and did not reconnect when the system restarted.
    I also received a 'warning' that a device was not disconnected properly.

  • Black Magic External monitoring and Canvas Presets: Motion3

    I have a Black magic card on my 3.0 quad intel. I am creating s Text commercial in Motion3. I have mixed the audio and imported that into Motion3. So, I am set up to create the entire project's visuals in Motion3.
    My canvas is set to Broadcast HD 1080i60 because i didn't see 1080p60 and for this job i wanted to use something that is default.
    I set the BM Intensity to to BM HD 1080i 59.94 and the HDTV is set to 1060i60 (via HDMI).
    I get a tile in the middle of the lcd. Like 720p on a 1080p screen.
    To get the best monitoring in my config how would i set up Motion3 , The BM Intensity , and maybe the HDTV also?
    I am trying to avoid the jagged edges on the text and photo-wrinkles from down-scaling.
    PS: i started in motion3 as DVCpro50 - 720p30.

    What is the correct set up so that i can make PP default to sending the stream to the external on every project?
    There is no way to set this on a project basis; it's per sequence. You must use one of the Blackmagic sequence presets to enable external monitoring from a sequence.
    Also who do i set premier to dual screen editing?
    I'm not positive, but this should be possible with the BMD card. However, setting up two desktop monitors is an OS setting, not necessarily a Premiere Pro setting. As long as you can expand your desktop over two monitors, you should be able to set up Premiere Pro and its various frames and panels to utilize both monitors. This is independent of full-screen external monitoring through the BMD.
    In premier preferences under the media tab i see the intermediate media timebase ... Does this effect how Premier is handling my source footage? If not what does the window effect?
    That dictates (or is supposed to, anyway) how imported media that does not have a specific timebase/frame rate should be handled on import. As far as I'm aware, this only affects image sequences--I've never seen it have any influence on an imported video or audio file. Even if it's set wrong when you import an image sequence, you can reinterpret the image sequence once it's in your project. Simply right-click it and select Modify > Interpret Footage. If you don't use image sequences, I think you can safely ignore this setting.

  • External Monitor Shows Only Black Screen ??

    Recently, my PowerBook G4 12" stopped working properly with my external monitor. My external monitor is a Dell 2005FPW that is connected to my laptop via a mini-DVI adapter, a VGA cable to the VGA port on the 2005FPW. When connected to the laptop, the 2005FPW goes black; otherwise, the monitor shows it's "rest" screen which is a bouncing color bar.
    This system has worked without problems for years. I changed nothing in the configuration and (possible red herring) the only "event" prior to the problem developing was that I installed the "Security Update 2008-005 (PowerPC) v 1.0".
    I have confirmed that the monitor and VGA cable are working with my wife's laptop.
    Today, I replaced the mini-DVI to VGA adapter, and the problem hasn't gone away.
    Any suggestions?
    Michael

    Did it develop around the same time, after you downloaded the security update?

  • Ntsc preview on external monitor

    hey guys,
    I have an ntsc job to edit and am doing a test so i am ready for when i sit down with the client. I cannot get a preview on my external monitor. Normally I pipe it to a dsr 11 deck when using pal no prob. Tried that with all settings to ntsc land ( flicked the ntsc switch on back of deck ) no love. I get an image but it wont play motion, when i hit the space bar it updates the image from where i was to where i stop but no motion, it gives me a display as if it is set on current from not all frames. I connected the firewire to my Z1 and get the same thing. Using FCP 5.1.4
    I used an easy set up in ntsc dv anamorphic.
    Any suggestions ??

    my TV and camera will display both ntsc and pal. Just went back to my powerbook and it did what i wanted no prob. Must be an imac thing, will try trashing prefs and see what happens, but will do job on weekend on PB. Getting late here in Sydney, will sort it out later... Thanks anyways...

  • External monitor resultion problem: black borders

    I use a Hanns-G HW191D 19" external flatscreen with my Macbook. It is a wide screen with 1440x900. The problem is that I cannot use all of that space when I'm in the Mac OS. I can use it (to the edges of the screen) when I use Boot Camp in Windows XP with the same Macbook.
    When I'm in the Mac OS (which is about 99.9999% of the time of course), I have about about an inch of black border all the way around my desktop -- as if it cannot scale up to the full size of the screen.
    In my system prefs, I have my Displays set to:
    1440 x 900
    Millions of colors
    60 Hertz
    I'm connecting via the VGA connector (since that's all I have to work with).
    The monitor itself has some onscreen controls, but nothing that can make the image bigger.
    Okay one other thing, I got this Macbook a long time ago -- almost two years. I got the external monitor for it about a year and a half ago. This problem existed from the first time I connected the monitor -- I tried to figure it out but couldn't and didn't think to try this forum. So I've been living with it since then (ug).
    Macizoids! Help!

    Did it develop around the same time, after you downloaded the security update?

  • Macbook pro does not support Final Cut Pro preview on external monitor?

    I have been editing on Final Cut Pro from my imac for approx 1 year with an external monitor attached with no problems. I recently bought a macbook pro, for Final Cut Pro editing, and discovered that the monitor does not work. The Final Cut Pro preview on the external monitor freezes and in the preview pane of FCP it flick between two images.
    I have been reading around some forums, and have seen a couple of people with the same problem.
    Anyone have a suggestion on how to run the external monitor with FCP?
    Thanks!

    You have probably already done it but ensure you have updated the OS and Quicktime prior to attempting to instal Final Cut Studio.
    I recently had a hard drive crash and after installing the new hard drive it would not read the OS installation disc. I ended up using an external drive case and installed the OS on the drive from a different Mac Book, then reinstalled the hard drive in the other Mac Book. Then it booted right up. I updated all the original software before attempting to install any additional software.
    Everyone kept saying it wouldn't install due a possibly defective optical drive and I can't say why but it wasn't the drive. As soon as I had the system up and running again the optical drive functioned flawlessly.
    I hope this helps you.

  • Footage Freezing on External Monitor and Timeline

    Hi,
    I'm scratching my head over this. I have a Sony HD TV I am using as an external monitor to display Final Cut from by Macbook Pro (I know to get the best quality I should get a Matrox, but I can't afford it at the moment).
    The macbook is hooked up to the TV via an HDMI convertor from the miniDisplay port. If I drag the canvas window onto the TV the footage (HD 720p, ProRes 422) plays fine.
    However, if I try to play the footage using Digital Cinema Desktop Preview the footage freezes on both the TV and on the timeline - the audio plays fine though!
    I simply cannot see why this could be happening. Does anyone have any advice - it would be very much appreciated!!

    Pulled it onto a hard drive but it made no difference.
    I managed to get it hesitatingly working by checking 'mirror on desktop' in audio/video prefs, but the video only plays for a few seconds then stops.
    I have tried various different files and formats but they are all the same.
    Unfortunately but I have to go out now but thanks for all your help so far - it seems I will have to do more head scratching and research tomorrow!

  • Newbie - External Monitoring and Media Prefs

    i have a black magic card. I had gotten premier to send a signal via hdmi to my external 27inch monitor but it has just quit. At one time it would send the source monitor A/V but not the timeline.
    What is the correct set up so that i can make PP default to sending the stream to the external on every project?
    Also who do i set premier to dual screen editing?
    In premier preferences under the media tab i see the intermediate media timebase  is set to 29.97fps drop-frame. The footage i am using is 720p60.
    Does this effect how Premier is handling my source footage? If not what does the window effect?

    What is the correct set up so that i can make PP default to sending the stream to the external on every project?
    There is no way to set this on a project basis; it's per sequence. You must use one of the Blackmagic sequence presets to enable external monitoring from a sequence.
    Also who do i set premier to dual screen editing?
    I'm not positive, but this should be possible with the BMD card. However, setting up two desktop monitors is an OS setting, not necessarily a Premiere Pro setting. As long as you can expand your desktop over two monitors, you should be able to set up Premiere Pro and its various frames and panels to utilize both monitors. This is independent of full-screen external monitoring through the BMD.
    In premier preferences under the media tab i see the intermediate media timebase ... Does this effect how Premier is handling my source footage? If not what does the window effect?
    That dictates (or is supposed to, anyway) how imported media that does not have a specific timebase/frame rate should be handled on import. As far as I'm aware, this only affects image sequences--I've never seen it have any influence on an imported video or audio file. Even if it's set wrong when you import an image sequence, you can reinterpret the image sequence once it's in your project. Simply right-click it and select Modify > Interpret Footage. If you don't use image sequences, I think you can safely ignore this setting.

Maybe you are looking for

  • When opening Facebook, Safari closes with error message

    It has happened for two days now.  I have restarted the computer, cleared the cache and it still happens.  The error message is below.   All other websites work normally - it only happens in Facebook.  I would appreciate someone's assistance, PLEASE!

  • Can attachments be sent with mail from an Ipad

    Can attachments be sent with mail from an Ipad?

  • Blackmagic Capture Cards?

    Anyone using Blackmagic capture cards? I have an Intensity Pro. Composite and s-video work fine. I cannot get component working with a 720p or 1080i signal. FMLE doesn't give me the option to select a resolution higher than 720x486. I haven't tested

  • No sound dv6000

    hi, i have a pavillion dv6000 with the conexant hd definiton smart audio hd2 sound card.  suddenly the other day my sound stopped working.  the speaker symbol in the lower left corner had a red symbol over it. when i hovered the mouse pointer over th

  • Adobe audition cs6.exe can't started

    my adobe audition cs6.exe collapse 失敗的應用程式名稱: Adobe Audition CS6.exe,版本: 5.0.0.708,時間戳記: 0x4f70c4f6 失敗的模組名稱: unknown,版本: 0.0.0.0,時間戳記: 0x00000000 例外狀況代碼: 0xc0000005 錯誤位移: 0x00000000 失敗的處理程序識別碼: 0x106c 失敗的應用程式開始時間: 0x01cd655ed5ffb793 失敗的應用程式路徑: C:\Pro