Firefox Crash and green video issue

Does not work on any browser and crashes all the time when I try to play video.
Edit: Please try to keep it civil.  We'd like to help you but swearing at us won't get you far.

Can you please provide us with the following information:
How to report a crash with Flash Player
How to locate a crash report in Firefox Windows
Thanks,
Chris

Similar Messages

  • Droid X2 camcorder crashes and other video issues...

    Just got the Droid X2 a couple weeks ago.  It's a great phone, but the camcorder app is incredibly frustrating.  It often records about 20 seconds of video before freezing.  The videos are then either corrupt and won't play, or just today I noticed one of them will play, but at twice the speed before freezing up. 
    I noticed issues with the camcorder on my Droid and Droid X, and now the Droid X2.  I'm using a 32GB SD card for all my media so I don't lose what I've recorded with the other phones.  I read somewhere else that if corrupted data is in the gallery, that leads to other images or videos becoming corrupted, so I formated the card at one point but that didn't fix the issue.
    Anyone else having this issue?  Thanks.

    I'm not using ArchLinux anymore since May, but I saw this thread from other forum (www.elotrolado.net) so I came here to explain you where is the problem
    It's related to NVIDIA drivers and JDownloader icon in the system tray on KDE4. Just disable the icon in the system tray from the JDownloader plugins and the problem won't appear anymore. You can find more info here: http://www.nvnews.net/vbulletin/showthread.php?t=133913
    In order to run JDownloader at least one time to disable it, you can remove the system tray from the KDE panel, run JDownloader and then disable the plugin. You can also configure the system tray so it hides the JDownloader icon by default, and then disable the plugin.
    I hope that helps you, and I'm sorry about my English, I'm Spanish

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

  • Flash Builder 4.5 with Firefox - crashes and no performance data.  How to fix?

    I am an experienced Flex developer, but new to the Flash Builder 4.5 Profiler.  I'm using Firefox 5.0 and Shockwave Flash 10.2.153.1.  Windows XP.
    I have several problems:
    1) in the profile view during a run, the buttons are dimmed and therefore I cannot "Capture Performance Profile".
    2) almost every time I run, the Flash Player in Firefox crashes (And now worse, using that same profile, Firefox crashes randomly, but quickly on ANY web pages.  I smell a re-install of Firefox coming.)
    3) there is the option to configure for the Standalone Flash Player and a browser.  How do I say WHICH one to use for a given profile run?
    If I configure the browser to be IE, Firefox runs anyway.
    Any ideas?  Suggestions?  Thanks for the time.
    Message was edited by: ozDiGennaro

    I have solved the crash by reinstalling the latest Flash Player.
    The configuration issue is not as important.
    The solution was simple.  In the "Profile" view, select the "[Running]" instance.  This enables the important buttons, like "Capture".
    This causes a "Performance Profile" line to appear, linked to the running instance.  Double click to view the info.
    Thanks for listening.
    Oz

  • Crashing and bad video.

    Hey here is a new one. I purchased my Touch last friday afternoon. Loaded up some music and a music video purchased off on iTunes. Played with it all day Saturday and some Sunday. Sunday afternoon I had noticed a few of the songs where not displaying album art so I connected the Touch and selected the songs hit apple key and I and pasted in the new album art.
    Now today I bring the Touch to work to show it off to co workers and the thing is crashing and the video is blown out and Where the color white is there is blue punching thru. I am going to call Apple this afternoon when I get home.
    To see if this is a hardware or data corruption issue. I have preformed the above task many times on my 5G iPod so I don't know what to think.
    Anyone else have this issue yet.
    Message was edited by: Ed Wiser

    So I got home and looked up how to reboot the Touch. After rebooting the weird color in the video and the constant crashing when trying to play music or using Safari has gone away.
    So reboot the Touch if this occurs. I can only think the copy and pasting of the album art to the Touch caused the problem.
    I noticed that it would go out to the home screen when the iPod Touch was in the sync mode.
    contrary to the 5G which would have the Do Not Remove symbol all the time when the iPod was in sync mode.

  • Firefox crashes and when attempting to launch after the crash it won't and throw and error msg that js.3250 can't be found- but same file is in Mozilla directory. I must then download new 3.6.8 and lose all tabs.

    # Question
    Firefox crashes and when attempting to launch after the crash it won't launch; throwing an error msg that " js.3250 can't be found" - but same file is in Mozilla directory.
    I must then download new 3.6.8 and lose all tabs and history.

    I have a similar problem. Recently my FF8 has been crashing a lot. It regularly locks up an entire core of my PC and often just shuts down. It has just done it a moment ago and when it started back up it did the whole "this is embarrassing" thing and asked me if I wanted to reload my tabs. I deselected the one that I was trying to view as I suspected that it may have been the cause (unlikely; it was node4.co.uk) but anyway, let's skip it just in case. Click on the button to restore and up pops my homepage only. So all of my other tabs, which I was using for work incidentally, are gone.
    This is not the first time this has happened on FF8. It happened a lot recently on FF6 I think it was (so hard to keep track now, Mozilla) and I switched to Chrome as a result, but it turns out that it crashes even more than FF6 did. FF7 was a vast improvement but FF8 is so unstable/unpredictable for me at the moment that I think I'd rather use IE9 than this. It's driving me mental, clearly! I wish I could kill the process manually and have it retry restoring tabs. Hey, there's an idea Mozilla; give us a menu item that allows us to restore the session to how it started to try again or at the very least get a list of the pages we were looking at. They don't show up in Recently Closed Windows and the Restore Previous Session is greyed out too. Gah! Help!

  • Every time I place a bid on Ebay my firefox crashes and must be restarted.

    Every time I place a bid on Ebay my firefox crashes and must be restarted. This is the only time this happens. It seems to be ok until I actually confirm the bid and within a second or two firefox crashes.

    This is most likely caused by '''The Browser Highlighter''' add-on. Uninstall or disable this add-on from Tools -> Add-ons -> Extensions. You could also try finding an update for this extension.
    See [[Uninstalling Extensions]] and https://support.mozilla.com/en-US/questions/682558
    If that does not solve the problem:
    Go to the address '''about:crashes''' and tell us your latest crash IDs. We can then look at the data specific to your crash and have a better idea of what is causing the problem.

  • Firefox crashed and after restarting, tabs i had open were gone and weren't in the history either. Didn't give me the option of restoring, how do i get them ba

    Firefox crashed and after restarting, tabs i had open were gone and weren't in the history either. It didn't give me the option of restoring, how do i get them back?

    Sorry , you probably can not get them back.
    You may have bookmarked them, or have them as part of the History previously stored and still searchable, but unfortunately otherwise you are unlikely to get them back. Firefox does to a certain extent back up bookmarks automatically but not the history.
    If you get problems with crashes see [[firefox crashes]]

  • Whenever IE tries to open, Firefox crashes, and cannot be reopened unti I restart the entire system.

    Whenever I click on something that brings up IE (not the default!), Firefox crashes, and when I try to reopen it, a screen comes up that is supposed to let me reopen it, but it won't. I have to reboot the system in order to bring up Firefox again. Is there some trick to restarting Firefox after this crash?

    Go to the address '''about:crashes''' and tell us your latest crash IDs. We can then look at the data specific to your crash and have a better idea of what is causing the problem.
    (Do this in Firefox not IE)

  • After mozilla firefox crashed and a restart, the Firefox Developer Edition opend - how to open the normal firefox browser ?

    after mozilla firefox crashed and a restart, the Firefox Developer Edition opend - how to open the normal firefox browser ?

    See if this works for you.
    Open up Tools > Options -> General and toggle the first preference - '''Allow Firefox Developer Edition and Firefox to run at the same time''' - to get back to your previous Aurora Profile. It will tell you to restart Firefox.
    If there's a check-mark in the box for that pref it shows the Aurora Profile, if you remove that check-mark it shows the Developer Edition Profile.

  • Firefox crashes and all website pages loose their formatting and pictures, and links are broken

    I’m currently running Firefox 18.0.1 on a 13” 2011 MacBook Pro 2.7 GHz Intel Core i7 with 8GB or RAM that is running OS X 10.8.2 Mountain Lion. I have been living with this problem for over a year and this same computer has had this problem while running OS X 10.7 and I think even 10.6. The problem also existed with earlier versions of Firefox including versions 17, 16, and possibly 15, it’s been so long I can’t remember.
    The problem is that Firefox crashes (or something within Firefox crashes) and the screen “goes white” and by that I mean all the graphics and layout of a page like YouTube disappears and even though the links are there, none of them work. The page is just made up of text and broken links. Reloading the page does nothing so I have to close Firefox and restart it. (No reboot) On relaunch everything is back to normal and may last a few minutes, or it may crash again right away. Generally if I launch Firefox and use it and then go use some other programs, when I come back to Firefox it will then crash. Is this a Java problem? Is this a javascript problem? I really don’t know what it is but it has persisted through several operating systems and different versions of Firefox running on different operating systems. I’m stumped and can’t find anyone who’s ever seen this problem. Any help or clues would be greatly appreciated.
    I should add that this problem is present on ALL webpages, not just one or a few. Safari works fine on the same machine and visiting the same websites. I have screen caps of the crashed pages but I don't know how to post them here.

    Please type about:crashes in the URL bar and provide us with the latest crash ids. Please do not make a screenshot but instead copy and paste. Thanks!

  • When I try to upload files to certain websites Firefox crashes and I get this signature: ReleaseTemplateVtbl(void**).

    When I try and upload files from my computer to the internet, Firefox crashes and I get this as my signature: ReleaseTemplateVtbl(void**). It happens on all sites where files need to be individually uploaded.
    == Crash ID(s) ==
    a0713084-6f65-4c35-a78d-7eaf02100603

    It was enough help! I found Firefox does default to the last folder. My problem was created because I was uploading from a subfolder within my d:/temp directory and then deleting that folder. Since the subfolder was deleted Firefox could not go to the last folder and was defaulting to the Mozilla directory.

  • Firefox crashes and closelly unexpectedly

    every moment that I open firefox latest no more of 5 minutes firefox crashes and close and always happen this.

    Please type about:crashes in the URL bar and provide us with the latest crash ids. Please do not make a screenshot but instead copy and paste. Thanks!

  • When firefox crashes and reopens it offers to restore pages hours/days old.

    When firefox crashes and is reopened, it usually brings up the pages that were open during the crash, but many times when firefox crashes, it will offer to restore pages that I did look at but that are hours/days old.
    e.g.
    I will be on youtube, facebook, my school website, and pandora. Firefox crashes. I reopen. Firefox offers to restore google search, my email, and wordpress, which I had looked at the night before.

    I have a similar problem. Recently my FF8 has been crashing a lot. It regularly locks up an entire core of my PC and often just shuts down. It has just done it a moment ago and when it started back up it did the whole "this is embarrassing" thing and asked me if I wanted to reload my tabs. I deselected the one that I was trying to view as I suspected that it may have been the cause (unlikely; it was node4.co.uk) but anyway, let's skip it just in case. Click on the button to restore and up pops my homepage only. So all of my other tabs, which I was using for work incidentally, are gone.
    This is not the first time this has happened on FF8. It happened a lot recently on FF6 I think it was (so hard to keep track now, Mozilla) and I switched to Chrome as a result, but it turns out that it crashes even more than FF6 did. FF7 was a vast improvement but FF8 is so unstable/unpredictable for me at the moment that I think I'd rather use IE9 than this. It's driving me mental, clearly! I wish I could kill the process manually and have it retry restoring tabs. Hey, there's an idea Mozilla; give us a menu item that allows us to restore the session to how it started to try again or at the very least get a list of the pages we were looking at. They don't show up in Recently Closed Windows and the Restore Previous Session is greyed out too. Gah! Help!

  • Whenever I open new tabs Firefox crashes and the browser window closes automatically.what will I do?

    I am facing this problem since a month.I never faced this problem before.I always feel good to use Mozilla Firefox as my browser.I used to open multiple tabs in a same browser window.For example- in a tab I logged in to Facebook,at same time I might be downloading songs or something else or open another site in the other tab.It might be 2 or 3 tabs sometimes.But now a days,I am facing the problem whenever I open multiple tabs.Its unusual and so much annoying.The Firefox crashes and the browser window closes showing a messege to send an error report.Please Help me.
    N.B. - I am using the Windows service pack 2.
    RAM - 2 GB
    Hard disk MEmory - 250 GB.

    I had this same problem. Seems to be caused by the web developer tool bar FF extension (this started happening after a recent update to that extension). After disabling it, my FF is back to normal :)

Maybe you are looking for