Multiple Screens Disables Monitor Video Preview

I have noticed a new bug (for me anyway) that on my Mac Pro with two video cards I cannot load clips into the monitor and get a preview. I see the clip thumbnails in the timeline, but no video preview. I just tested this by unplugging my secondary displays and that resolved the issue. Haven't yet tested with the laptop using an external display.
I did just update to Mac OS 10.9 Mavericks, but I was seeing this behavior prior to that. Anyone else seeing this behavior?

Hi -
Thanks for your post and attention!!
I could reproduce your problem on a Mac Pro with two graphic cards. The video could playback in Timeline panel and could hear the audio, but could not see the thumbnail view in Monitor panel.  I have opened a bug for this and our team are investigating it.
Thanks & Best regards,
Jenny

Similar Messages

  • Any way to disable the video preview/PIP window?

    I would like to be able to disable the PIP/preview window during a chat...don't see any obvious way to do this...
    can I?
    Thanks
    Mike

    Consequently if you have a MAc account on two
    computers and use the same full name in the Address
    Book you will have problems.
    There is also a secondary issue if the comptuers have
    the same name.
    hey Ralph-
    yeah, I could understand that, but the 2 machines do NOT have the same name, and I've set up different address book entries...one doesn't have ANY accounts active...raw machine that I just want to get the Bonjour chatting to work...
    interestingly, it works MUCH better on a computer to computer network than it does with the 2 machines just accessing a Airport express that is NOT connected to the internet.
    Mike

  • Disable Thumbnail Video Preview Scrubbing?

    Hi,
    I'm trying to oprganize a large library of video files on a new/fast MacBook Pro with plenty of RAM. I notice that as I bring a folder of say 100 video clips into LightRoom, the machine slows down for a very long time. It seems like this is due to LR creating smaller scrub-over previews for the thumbnail (Poster View) grid. Is there current way to disable this? It's a nice feature thought, but holy resource hog, Batman!
    Thanks!

    Consequently if you have a MAc account on two
    computers and use the same full name in the Address
    Book you will have problems.
    There is also a secondary issue if the comptuers have
    the same name.
    hey Ralph-
    yeah, I could understand that, but the 2 machines do NOT have the same name, and I've set up different address book entries...one doesn't have ANY accounts active...raw machine that I just want to get the Bonjour chatting to work...
    interestingly, it works MUCH better on a computer to computer network than it does with the 2 machines just accessing a Airport express that is NOT connected to the internet.
    Mike

  • When I try to import video frames to layers in Photoshop CS6 all I get is a solid green screen where the video preview, and the layers are supposed to be. How do I fix this?

    I am using a Mac OS, and even if I select a random chuck of video and convert it to layers the layers from that are still the solid green image; not the video.

    Are you trying to import a silent MP4? I had the same problem, when when I switched it to an MP4 with sound - I don't know why, but it worked.

  • Multiple screen video rendering

    I am building an application that intends to reproduce multiple videos in a multiple screen environment (one video for each screen at a given time).
    Right now we are performing tests with a Xentera GT4 video card (4 video ouputs, agp ) in a WinXP machine with a 2.4GHz processor. The results are less than satisfactory, having the videos lag and freeze from time to time. CPU usage shoots to 95+%. We need the videos to play smoothly across the 4 screens.
    Video card description here: http://www.colorgraphic.net/newsite/products/xentera_gt_features.asp
    Has anyone else tried something like this? what are the results? any clue as where to search for possible solutions?

    hi ,
    i try to build the same thing, did you found a solution ?, does the video have sound ? did you split the sound and then display video and sound on different screens separate?
    thanks,
    vs65

  • Getting the following message on Final Cut Express "audio only capture selected video preview disabled" how can I get the video capture back?

    I'm getting the following message on screen when attempting to capture video  "audio only capture selected, video preview disabled."  How can I get the view preview back?

    FCE doesn't allow for audio only capture, it's in a twist somewhere.
    Try trashing the FCE preferences.
    Al

  • Exactly what cables and hardware do I need to connect my early-2008 MacBook Pro to a flat-screen TV monitor to have both video and audio?

    Hello--
    I'm trying to figure out how to connect my 15" MacPro Book from early 2008 to a Sony flat screen TV monitor. I've been told I need a "Mini DisplayPort to HDMI Adapter" and a "HDMI to HDMI" cable, but I've also been reading that some cables only work with 2010 & 2011 laptops and that I may need additional cable/hardware to obtain audio. Could someone advise me on exactly what products I need to purchase?
    Thank you!

    Which MacBook Pro 15" do you have?
    With the silver keyboard (Early 2008)) or that one with a black keyboard (Late 2008)?
    If you habe the Late 2008 you can use a miniDisplay Port + Audio to HDMI like that one (stereo sound) or that one (5.1).
    If you have the Early 2008, it's not so easy, because you need a DVI + Audio to HDMI like that one (the Audio Channels had to be converted to Coaxial!) So much more adapters! Maybe there is a manufaturer which has the all in one solution)
    Both MacBook Pro DOESN'T support audio on the video output! The later ones (Mid 2010 and later) supports Audio output within the miniDisplay Port.

  • Camera video preview - Random crashes and green screens

    Hello everyone,
    I am currently working on a Windows Phone 8.1 app and I need to preview video from the phone's back camera. For quite some time I've been struggling with random crashes and green screens. When these green screens appear, all camera apps become affected and
    the device needs to be restarted. Occasionally the phone freezes and only recovers after battery removal. I test the app on my Lumia 620.
    After some web search, I found references to the same problem by many users/developers of different apps. I'm really frustrated as I've tried many possible solutions with no avail.
    Here is part of my code:
    //in App.xaml.cs:
    MediaCaptureInitializationSettings settings;
    public static MediaCapture captureMgr;
    public static bool UnableToInitializeCamera = false;
    public async Task InitializeVideoCapture()
    DeviceInformation backWebcam = await GetCameraDeviceInfoAsync(Windows.Devices.Enumeration.Panel.Back);
    if(captureMgr!=null) captureMgr.Dispose();
    captureMgr = new MediaCapture();
    settings = new MediaCaptureInitializationSettings();
    settings.StreamingCaptureMode = StreamingCaptureMode.Video;
    settings.PhotoCaptureSource = PhotoCaptureSource.VideoPreview;
    settings.AudioDeviceId = "";
    if (backWebcam != null)
    settings.VideoDeviceId = backWebcam.Id;
    else
    var _messageDialog = new MessageDialog("Back panel camera not found");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    try
    await captureMgr.InitializeAsync(settings);
    captureMgr.SetPreviewRotation(VideoRotation.Clockwise90Degrees);
    UnableToInitializeCamera = false;
    catch
    UnableToInitializeCamera = true;
    Debug.WriteLine("HANDLED EXCEPTION: camera could not be initialized");
    var _messageDialog = new MessageDialog("Unable to initialize camera");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    protected override async void OnLaunched(LaunchActivatedEventArgs e)
    //.... other app initialization code
    await InitializeVideoCapture();
    Window.Current.Activate();
    private async void OnResuming(object sender, object e)
    AppIsResuming = true;
    FinishedCameraInitialize = false;
    await Task.Delay(TimeSpan.FromSeconds(0.5));//this makes crashes less frequent
    await InitializeVideoCapture();
    FinishedCameraInitialize = true;
    if(WasPreviewingCamera)
    WasPreviewingCamera = false; //the following line allows time for SetupPage._captureElement to be assigned before video preview starts while (!SetupPage.CaptureElementSourceAssigned) await Task.Delay(TimeSpan.FromMilliseconds(1));
    SetupPage.CaptureElementSourceAssigned = false;
    try
    Debug.WriteLine("trying to restart video preview");
    await captureMgr.StartPreviewAsync();
    SetupPage.PreviewingCamera = true;
    catch
    Debug.WriteLine("HANDLED EXCEPTION: unable to start previewing");
    SetupPage.PreviewingCamera = false;
    GC.Collect();
    AppIsResuming = false;
    private async void OnSuspending(object sender, SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    while (AppIsResuming) await Task.Delay(TimeSpan.FromMilliseconds(1));//prevents crash when app is suspended right after it is resumed
    await CleanupCaptureResources();
    TimeOfLastSuspend = DateTime.Now;
    FinishedCameraInitialize = false;
    GC.Collect();
    deferral.Complete();
    public async Task CleanupCaptureResources()
    if (SetupPage.PreviewingCamera)
    await captureMgr.StopPreviewAsync();
    WasPreviewingCamera = true;
    SetupPage.PreviewingCamera = false;
    else WasPreviewingCamera = false;
    if (captureMgr != null) captureMgr.Dispose();
    //in SetupPage.xaml.cs
    void OnSuspending(object sender, Windows.ApplicationModel.SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    _captureElement.Source = null;
    CaptureElementSourceAssigned = false;
    GC.Collect();
    deferral.Complete();
    private async void OnResuming(object sender, object e)
    ProgressRing2.Visibility = Visibility.Visible;
    ProgressRing2.IsActive = true;
    while (!App.FinishedCameraInitialize) await Task.Delay(TimeSpan.FromMilliseconds(1));
    App.FinishedCameraInitialize = false;
    captureElement.Source = App.captureMgr;
    CaptureElementSourceAssigned = true;
    GC.Collect();
    ProgressRing2.Visibility = Visibility.Collapsed;
    ProgressRing2.IsActive = false;
    Any help towards a solution will be greatly appreciated.
    Thank you

    I will also advice that you start by following the
    Windows Store app sample.
    Is this a Windows Phone app?
    The crash/green screen only manifests itself when I suspend my app and switch to the default camera app (could be any other camera app perhaps). It happens roughly 1 out of 8 times. That's why I posted the suspension and resuming handlers, which I wrote
    according to the msdn instructions.
    I found
    this page with a sample that demonstrates the MediaCapture API for Windows Phone. Some developers have reported problems similar as mine. Has Microsoft dealt with this issue?
    I've spent quite a few weeks trying to investigate this problem, without actually knowing if it is my code that needs to be debugged. That's why I'm asking if other developers are facing similar problems.
    Thank you
    Edit: It seems that the crash/green screen can appear when suspending/switching to any app (regardless if it uses the camera or not). Also, all works fine when the app is running on the debugger.

  • I have IPAD 1 and I would like to sharing the screen to monitor TV (video,photo,app). What are the options?

    I have IPAD 1 and I would like to sharing the screen to monitor TV (video,photo,app). What are the options?

    Unfortunately you do not have any options, the iPad one cannot be used for mirroring.

  • Having trouble disabling video previews

    I have Adobe Premiere Pro CS4 and 1.5.  I recently upgraded to Windows 7 from Windows Vista.  While on Vista I only had 1.5 running on my computer.  Since upgrading to Win7, I noticed that when I upload a video file into the timeline, I am forced to render a video preview file.  I don't remember how to disable this so that I can go back to realtime editing.  I am also having the same issue with Premiere CS4.  Does anyone know how to disable preview renders in both of these versions of Premiere?

    I have been using the proper file formats.  Problem is I didn't have this issue before in which I would get a red line on my timeline that force me to render my project everytime I added a new scene.  Only times I've ever had to render are through the use of transitons and filters.  I'm not doing anything differently than I have before.

  • Video Preview Screen Is Black But Still hear the sound

    I was having problems viewing previews for movies and videos. Itunes support kept having me re-install just Quicktime but it never solved the problemn so I started digging around the prefernces for Quicktime. Here's what I did:
    1. Open Quicktime, click on edit and pick Quicktime preferences.
    2. Choose the advanced mode and click on all the Direct X options.
    3. Hit apply.
    4. Close Quicktime and open your itunes.
    This should fix it. Hope this helps anyone else who has this problem.

    Thanks for this tip! It solved my black music videos preview and overall poor Quicktime performance
    MacRevisited

  • Android Multiple Screens

    Hi,
    I was wondering if it is possible with Adobe air to allow for multiple screens in Android. I have a HTC Incredible and a Galaxy Nexus both of which support video out. Android currently only supports mirroring for Video out. I wanted to know if it would be possible for adobe air to recognize the video out of the device as an external display that use either a MHL HDMI Out (Galaxy Nexus) or Analog-Composite video out (HTC Incredible). To illustrate a scenario that would use this: let say the app is a gallery and has x amount of pictures. The user has a video out cable connected and is recognized as the second monitor. Once the user sees a picture they like they would click on the image. Once the image is clicked it is sent to the 2nd display (the video out of the Android device) so the picture is being displayed on the larger screen while the user is still free to browse the pictures. Is this in realm of Adobe Air capabilities? Or am I misinterpreting "Multiscreen Development"?
    Thanks,
    -Nick

    Hello,
    Anyone have information about this problem ? I have warning about hight resolution for tablet when I publish my application on Android Store ?
    Thanks for you help.

  • 2nd Graphic card displays white only if used for Video Preview in FCP

    I just bought a Vavida 8800 graphics card, so that I could connect 3 monitors total. I have my main two monitors on my table connected to the Navida, and a flatscreen TV behind me in the living room connected to the original Redeaon graphics card. All 3 monitors display fine, but when I try to set the Video Preview in FCP, either on RAW or Full Screen, all I get is a white Image. This worked fine with only 2 monitors.
    Does anyone have any ideas?
    Christian

    Does anyone know if Apple is working on the second graphic card issue in FCP?
    I installed an ATI 3870 on top of the 2600 that came with my MacPro, assuming that it will work.
    But I'm having all kinds of problems in FCP, random freezes, long waits for rendering and exporting, etc.
    I have two Dell 24 inches monitors and a smaller 19 inches Acer, and I would love to have some extra real estate to leave the timeline in one Dell, the preview in another, and the canvas and viewer on the Acer.
    I read I can get the Blackmagic Intensity to output HDMI/DVI (via an adapter, I guess, since the Blackmagic has no DVI output and my monitors have no HDMI), so my question is: if I get the Blackmagic can I use it's output for other programs (Photoshop, ProTools, and so on)? or it will only appear as a valid output in FCP? In other words, does the Blackmagic works as a graphic card when FCP is not active?
    Sorry for the silly question, but I already bought a card that is actually useless for me, and I don't want to spend $250 in another.
    Thanks

  • Fullscreen Multiple Screens Mac

    Is it possible to go fullscreen on multiple screens on mac?
    I can't get it to work.
    Then i tried a workaround with an UNDECORATED stage.
    but this gives this http://postimage.org/image/565ld2m1b/
    where the blue is the desktop.
    Code: -----
         private void setupStageFullScreen(Stage stage, int screenNumber) {
              ObservableList<Screen> screens = Screen.getScreens();
              Screen screen = screens.size() <= screenNumber ? Screen.getPrimary() : screens.get(screenNumber);
              Rectangle2D bounds = screen.getBounds();     
              stage.setX(bounds.getMinX()+1);
              stage.setY(bounds.getMinY()+1);
              stage.setWidth(bounds.getWidth());
              stage.setHeight(bounds.getHeight());
              if(screen.equals(Screen.getPrimary())) {
                   stage.setFullScreen(true);
              } else {
                   stage.toFront();
         }

    A DMP connects to a single screen as it has a single HDMI output. Some monitors allow daisy chaining across multiple monitors but this a function of the monitor not the DMP.  With this option you can get the image to fit across multiple monitors like a 2x2 monitor setup.  The primary monitor connects to the DMP and then the rest of the monitors connect monitor to monitor using a HDMI cable.  You then program the main monitor for how you want the screens to show the image.
    The datasheet is referring to content can be placed in separate regions on a monitor.  This way you could have a video in one region, text/image in another and an RSS feed in a third.
    Hope this helps.

  • Final Cut and Monitoring Video

    Hello Everyone,
    This is definitely the wrong place to post this so I apologize in advance. Like most of us, I am an aspiring video editor. I have FCS2, external drives, multiple screens, etc. My next addition to my "studio" would be an NTSC monitor. I would like to hook up a monitor or a small TV to my computer and through Final Cut to see how my work looks on the screen. Basically, it would be for color monitoring, repositioning texts, etc.
    Does anyone recommend a good monitor out there and can you explain to me how I can do this? I am not very familiar with the process.
    Thank you!

    If you're just starting out and on a limited budget, this one is pretty good for the money: http://tinyurl.com/37druv
    It has all the normal features you'd expect on a pro monitor (underscan, blue gun only, etc), 16:9 and 4:3 aspect ratio and composite and Y/C inputs. Options include cards for adding SDI and component inputs.
    -DH

Maybe you are looking for

  • Specific Settings for external and internal display modes?

    Does anyone know if there is a way do have different settings that adapt to whether I'm using my Macbook's internal display or am docked to my 23" external Cinema Display at home? It would be nice if the Dock would be small and on the side "internall

  • Strategic role of XI as clearing center?

    Hello, does it make sense to use XI as clearing center? That means you need to check first all messages within XI coming from different interfaces. After that consolidation step in XI the next step is to send these messages (checked and maybe correct

  • Configure Bank Gurantee in SAP

    Dear Experts, I have requirement where my client wants to post Bank Gurantee for vendors in SAP. Can someone please expain how the same can be configured and provide some documentation for the same. I am aware i need to create a Special GL indicator

  • DSP 4 crashes during build every time

    Hey everyone- I create dozens of DVDs a month and this project has me stumped. It's as cookie-cutter as it gets- a wedding DVD. Everything has been compressed as usual. The DVD menu I use is an Apple template. Everything used before. The total run ti

  • Write data in a Configuration Settings file

    Hello, I want to open,write and save a Configuration Setting File and I use the VI Write_Characters_To_File (available in the Input/Output functions) for that. But my problem is that the file generated had a size of 1.81Kbytes instead of the original