Blue and Green Screen

Can you do blue screen and green screen things on Final Cut Pro? Don't tell me how because I don't own it. I just want to know if it's possible.

www.dvgarage.com
Look at DV Matte Pro...as another option.
Shane

Similar Messages

  • HT201263 Blue and green screen

    My iPad won't turn on. Held both buttons and got a blue and green lined screen. Help???

    You have to hold the sleep and home buttons down at the same time for at least 10-15 seconds and the key is to wait until the Apple logo appears on the screen before you let go of the buttons. It can take even longer than 15 seconds.
    But the fact that you are seeing this funky screen makes it seem like it could be a hardware problem. Anyway, you still have to go through the troubleshooting steps and see if anything will help restore the iPad to working order.
    Start here. Read any and all of the links that are in the kb article as well.
    iOS: Not responding or does not turn on - Apple Support

  • Flashing blue and green screen

    Hi, I upgraded to Quicktime Pro 7 and now no videos, wether .mov, .avi or anything show up in the player. I get sound fine...the visual is just a flashing green and blue screen. Also, this is a product I purchased, and now I am told I can't get support from an apple technician. What kinda support is that?! I can't talk to anyone who will help me troubleshoot?
    Thanks to anyone out there that can help me.

    Quicktime Control Panel / Advanced tab
    under Video switch to "Safe mode". Quit QuickTime and any open browser and try the file again.

  • Blue and Green horizontal lines on my screen

    I have the 2008 version of the MacBook Pro with the 15 inch screen. While using it last night I suddenly started seeing blue and green horizontal pixelated lines going across my screen. The first time it did it, I rebooted my laptop and it was fine for a while but then they came back. This morning when I turned it on, the lines were still there. I have no sort of warranty on this computer anymore. This is actually a computer I recieved from school back in 2008. Is this a sign my screen is going out?

    Hello tattooedbeauty,
    Thank you for the details of the issue you are experiencing with your MacBook Pro display.  I would be concerned as well if I were seeing blue and green horizontal lines.
    I found an article with steps to troubleshoot issues with displays.  This article is for internal and external displays, so you can skip any steps referring to an external display.  I recommend reviewing the full article, but this step specifically stands out to me:
    Reset the system
    You can reset the Mac's parameter RAM and SMC.
    You can find the full article here:
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    Thank you for posting in the Apple Support Communities.
    Best,
    Sheila M.

  • Ipod touch with white screen and blue and green lines

    I have had the newest ipod touch for a year now no problems..I was just on Facebook and the screen froze then went white with a lot of blue and green colored lines on it. It won't do anything I have tried plugging it in and holding down sleep and the home button for ten seconds but I get nothing. What should I do? Will this be covered if I take it took the apple store?

    same here!!!
    my iPod Touch heats up, I've been trying to take of the case and connect it to 2 different computers but the computer don't recognize it, I tried to power it off, to do hard reset but the device not responding.
    is there a solution for this problem?
    iPod touch 4th, iOS 5.0.1
    here is a image of my device's screen.

  • I have blue and green vertical lines on my iMac which is no longer covered by Applecare. Is it fixable?

    I have blue and green vertical lines on my iMac which is no longer covered by Applecare. Is it fixable?

    What model iMac? Could be a failing video card but maybe not. Is it that way on every screen, startup to shutdown, any time the screen is lit?
    Do you have an AASP nearby? Time to have an estimate made. Fixing it will likely be very expensive.

  • Blue, red, green screen

    I have had my i book for about 3 years. Recently it has just started going to this black screen, then red, blue, or green. I wiped out the hard drive and it is still doing it. Any one else face this problem. I'm trying to fix it my self before i send it to apple support

    Help! My ibook also about 3 years old that has my life on it doesn't go "black", but red, blue and green stripes running vertically-- not a pretty sight when you want to get work done! Any ideas of how to fix, or what this symptom means????

  • 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.

  • Black and green screen keeps flashing in my video - please help

    i have a ..............
    and every time i try to export my video black and green screen keeps flashing in my video can any one help
    i think maby its bechuse im using a Macbook pro maby i need a better graphic card or much faster computer

    Thanks, I will try that after a couple of days. I want to make sure that my iPhone is completely dry inside.
    Anyone who knows how long it may take for an iPhone to dry inside after 2-3sec in water? Its in a bag of rice.

  • Iphone 6 shows blue and red screen and shut down

    since some days my iphone 6 shows blue and red screen and shut down, after some minutes it restarts, today its already down 30 minutes.
    What can I do ?

    Hello Oliver,
    Thank you for using Apple Support Communities. 
    The following article covers what you can do if your phone is restarting when you are using it. 
    If your iOS device restarts, displays the Apple logo, or powers off while you're using it - Apple Support
    Regards,
    Jeff D. 

  • Black and green screen after water

    Well I did this huge accident by dropping my iPhone 5 into the toilet, but it was only in there for 2sec. I dried the phone and it was still working, but after a while it turned itself off. As a reaction, I hurried starting it again to check if it still was working and it was. But after that, my friend told me to turn the phone off again as soon as possible.
    When I got home, I placed the iphone in a bag of rice without any air in it, and waited over 24 hours to check it.
    When I checked it(which I think I did too early)- it worked, and I was so happy! Everything, the sound was just fine, but after a while it didn't respond to my touches and suddenly the screen became black and green pixle-ish and grumsy, but I could still see something in the background.
    I placed it back into the rice, but this time on my bathroom floor in a bag, because it's warmer there.
    I don't dare take it out before I know that most of the water is gone, but at the same time I don't know what the problem with the screen was. Is it possible to fix it? I think I maybe can get some help from a friend, but it would be nice if anyone knew what i could do, or what the problem is.
    I also read about people who got problem with black and green screen on their iPads. Everyone who read the thread had hit their iPads on the backside of the iPad and it got normal screen again.

    Thanks, I will try that after a couple of days. I want to make sure that my iPhone is completely dry inside.
    Anyone who knows how long it may take for an iPhone to dry inside after 2-3sec in water? Its in a bag of rice.

  • Blue or Green Screen

    Hi: I've occasionally had a blue screen when I woke the Mac Mini from sleep. Yesterday, I had a green screen when I woke it up. I unplug it for about 30 seconds and when I start it up again, everything is fine. In some cases these incidents happened after I ran OnyX, Yasu, or when I repaired Permissions. Is it likely I have a hardware problem? If not, is it anything to be concerned about? I've had the Mini for about 3 month and I love it. Thanks, Jerry.

    Thanks Sherry. I started it in Safe Mode and all was ok. I don't know how to run the repair disk in Disk Utility or the Apple Hardward Test. I installed Disk 1 for the system, but I couldn't figure out how to run these programs from Disk Utility. In any case, Safe Mode indicated that the Disk was ok. Thanks so much for your help. If you have the time to tell me how to repair the Disk and do the Apple Hardware Test, I'd appreciate it. I'm new to the Mac world. Thanks, Jerry.

  • Motion and green screen

    I don't have Motion yet, but I was wondering, is Motion better for compositing with green screen than FCP? I did a test shot of a person sitting on the green screen, and I'm having problems getting rid of the dark shadows (shadow closest to the edge) in FCP.

    Well, first things first. I think everyone will agree that the key to green/blue screen is lighting, lighting, lighting. Assuming your shot is well lit, it shouldn't be too hard to do. I don't think the keying tools that come with FCP, or Motion for that matter, will give you the best results.
    I just bought dvMatte Blast for Motion 2 from DV Garage (http://dvgarage.com/prod/prod.php?prod=dvmatteb) and in 4 clicks I had a fantastic looking key. Their app uses more infomation from your shot than a standard keyer does, so you can get better edges, even from miniDV. You can't beat it for $99! They also sell dvMatte Pro for Final Cut. Not sure what the extra cash gets you. One big difference is that Motion does it in REAL TIME. I had my footage playing WHILE I was changing the settings, so I can check to see if there's any dancing pixels around the edges. Amazing.
    I'm guessing FCP would have to render before you can see the results. And well all know what real time means in FCP...
    Good luck!
    --Alex

  • Video card for HD and green screen

    I use a windows XP64 based machine with a quad core I7 920 processor and 12 gigs of RAM with nVidia 260 card. I use CS3. Right now I am having severe crash issues in Premeire CS3.
    I do HD 1080i video editing with up to 4 layers of green screen. I currently use Adobe AE Keylight2 for my greenscreen work. I bring the files into Premeire with "Dynamic Link". I crash, and crash, and crash. What is my best option to prevent crashing. A Quadro video card? which one? . Or, Matrox Max. My budget is somewhat limited. I can't get both. I want to upgrade to CS5 but need to fix this problem, now.
    Sincere thanx to anyone who can help

    I appreciate the quick answer and am considering moving to Windows
    7 (64). What is the sad story about Matrox? What is the best way to speed
    up my rendering or processing without having to purchase another cpu? Thanx once again for your quick response. I render primarily to h.264

  • I dropped my ipod touch gen 5. and the screen went a very dark blue. and the screen is not responding. all you can do i turn ond off the home button. but the screen still doesnt show up. what do i do? please help

    hi
    not even 20 minutes ago i accidentally dropped my iPod touch generation 5. and the screen wasn't responding. it went dark blue/ black color. when you press the on/off button or the home button, all that happens is that the screen light up but not eh background,time and etc. its just a simple black screen with a glow. my iPod has already being cracked before. and i haven't fixed it.
    please tell me what i can do. should i reset it or what? my iPod is honestly my life. i backed it up and everything yesterday. im so glad i did that. please help

    Try
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                              
    Unless you purchased the option AppleCare+ extended warranty
    Apple will exchange your iPod for a refurbished one for $99 for 16 GB 5G and $149 for the other 5Gs. They do not fix yours.
    Apple - iPod Repair price                                    
    A third-party place like the following may be able to fix it for less less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens         
    Fix it yourself if you are up to it. However, it is hard since yo do not know what is wrong
    iPod Touch Repair – iFixit                  

Maybe you are looking for