Video clips freeze and green screen after updating Toshiba PC health

I recently responded to a message from my PC Health monitor utility to download and update software. After doing this I can no longer watch video clips on line (e.g. youtube clips freeze and picture goes green and internet freezes becomes unresponsive requiring shut down restart.
I have tried downloading intel graphics drivers but get a message that says this app can't be run on the PC, seek info from manufacturer?
Can you help please?

Thanks for getting back to me and apologies - of course I should have provided better detail in my original post. I am not sure on the detail of the driver I updated but I THINK it was the Reltek one?
Laptop model is Satellite C850 and part number is PSC8WA-05D001 I have tried to download the graphics and audio drivers from your site. When I do though, download goes really well until the last 2 % and then it freezes?
I got it to complete by pausing the download and restarting it but then when I go to run it two things happen. 1. I get a Windows message saying something to the effect that it is not a recognized app an d a read more link. Clicking on the read more link gives me a chance to choose "run anyway" but then I either get "this app can't run on your PC, check with software publisher".
Other driver apps seem to get ready to run with a program window headed TSS_Setup.exe but an error message then appears in red "error occurred in reading archive. [121]

Similar Messages

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

  • ATI TvPortal Green Screen After Update to Snow Leopard

    Hi,
    Is there any solution to this problem. I left messages at Diamond Multimedia and ATI and both
    blame Apple for this problem.
    Since the OS update my TV card is a plastic brick.
    I would appreciate if you give me an answer to this problem.

    Same thing here. I already had OS X 10.6.2 and when I installed the original drivers for the TV tuner fm the CD that was included, I had good audio and marginal video. I ran the auto-update on the software and downloaded/installed the latest version of the ATI drivers. That resulted in the same problem everyone else has listed: green screen and audio on all channels. I too tried to back out the update and reinstall the original drivers and now have crappy video and no audio. Tried calling ATI and their help line refers you to a former component supplier who informed me they have no visibility on the Mac drivers for the new ATI tv tuners, and suggested I contact Apple.
    It would be ideal if someone could come up with the fix on this issue.

  • Black and white screens after updating On 5800XM

    I've just finished updating my 5800XM to the latest software now I seem to have lost the colour on a lot of my screen.
    Can some one tell me how to resolve this

    Can you see anything on the screen ? Was the screen replaced by any chance ?
    Refer this..
    /t5/Pool-of-Knowledge/Recovering-from-a-failed-firmware-update/td-p/398147
    If nothing helps.. Take the phone to Nokia care..
    --------------------------------------------------​--------------------------------------------------------​--------------------------------------------------​--If you find this helpful, pl. hit the White Star in Green Box...

  • After update.. i can not start the ipad, when i press agree in the terms ...it will freeze and the screen not working///help please

    after update.. i can not start the ipad, when i press agree in the terms ...it will freeze and the screen not working///help please

    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

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

  • Every time that I want to go full screen with an enbedded video firefox freezes and doesn't expand

    Every time I try to go full screen with an embedded video or video game Firefox freezes and stop working

    1. Update firefox to the latest version 2. and disable real player in menu->addons->plugins.
    Recent crashes of certain multimedia contents (this includes Youtube videos, certain flash games and other applications) in conjunction with Firefox 13 are most probably caused by a recent Flash 11.3 update and/or a malfunctioning Real Player browser plugin.
    In order to remedy the problem, please perform the steps mentioned in these Knowledge Base articles:
    [[Flash Plugin - Keep it up to date and troubleshoot problems]]
    [[Flash 11.3 crashes]]
    [[Flash 11.3 doesn't load video in Firefox]]
    Other, more technical information about these issues can be found under these Links:
    http://forums.adobe.com/thread/1018071?tstart=0
    http://blogs.adobe.com/asset/2012/06/inside-flash-player-protected-mode-for-firefox.html
    Please tell us if this helped!
    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • My ipad 2 just show itunes n usb logo at screen after update ios8.1.2.It just freeze there.but not happening to my ipad air n ipad mini!!!what to do?i dont wanna lose any data on it.

    My ipad 2 just show itunes n usb logo at screen after update ios8.1.2.It just freeze there.But it not happening to my ipad air n ipad mini!!!what to do?i dont wanna lose any data on it.

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • After having to reinstall my drive with applications I get a message with Premiere Pro CS5 that it can't find any "capable video play modules" and asks me to "update" my "video display modules". How do I do this? I am using a mid-2010 iMac 27" with 10.7.3

    After having to re-install my start-up drive recently I am getting a message with Adobe Premiere Pro CS5 that it can't find any "capable video play modules" and asks me to "update" my "video display modules". I am using a mid-2010 iMac 27" with OSX 10.7.3. How do I do this?

    Premiere is an Adobe application and is supported in their forums.
    Good luck.
    x

  • Whenever I log into Facebook and someone has sent me a video I get a green screen and I can't see the video.  Please help.

    Whenever I log into Facebook and someone has sent me a video I get a green screen and I can't see the video.  Please help.

    You're welcome. And thank you for marking question as answered. To prevent it from happening again, go to Settings > General > Accessibility, turn off Zoom.
    Stedman

  • HT201263 Since my iPhone 4S was stuck on the connect to iTunes screen after updating to iOS 7, I followed these instructions and restored.  But nothing changed!  I still have the same picture of a plug with arrow to iTunes.

    Since my iPhone 4S was stuck on the connect to iTunes screen after updating to iOS 7, I followed these instructions and restored.  But nothing changed!  I still have the same picture of a plug with arrow to iTunes.

    It is restored now.  Thanks for the comment about disabling firewalls - we did that and tried again and it worked.

  • Blank video and green screen back again when I post video on Facebook

    It doesn't offer that option. I have Windows 8.1 and this is the second time this happened. Support told me to go to tools, internet options and change Use software rendering instead rendering of GPU rendering. It worked. Now however, the setting is still the same and the video
    is blank and green on Facebook.

    Hi,
    Perform a clean install Flash Player may help:
      http://helpx.adobe.com/flash-player/kb/clean-install-flash-player.html
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Video clips freeze up when an audio part is locked to it.

    I have imported around 200 clips. When I extract the audio from a clip and lock it to another clip for a voice-over, the video part of the clip freezes and then lurches ahead to wherever the playhead is. When I tried to attach a song to a clip from iTunes, the same thing happened. This did not happen in the past (Dec. 2007) but I have recently upgraded the OS and iMovie. I checked for the minimum requirements for iMovie 5.0.2 and the apple site says, "g3 400mhz and 256mb ram". I have QuickTime 7.5 installed. Is it the processor not being able to handle the newer version of iMovie?
    help,
    Paul

    I looked for any discussion on this problem and did a search but did not find anything until after posting this question. I found an extensive thread on what is called a "stutter" at the following location:
    http://discussions.apple.com/thread.jspa?messageID=2600193#2600193
    cheers,
    Paul

  • IPad Air with iOS 8.02 freezes and blue screen appears. What should be done ? Why is this happening ?

    IPad Air with iOS 8.02 freezes and blue screen appears. What should be done ? Why is this happening ?

    If nothing else works, you might try this one. It has worked for many others ...
    Use iTunes to do a reset to factory default condition. Always be sure to do your backups before fiddling with your iPad. You might do both the iCloud and the iTunes backup, just to be sure!
    Back up and Restore your iOS Device with iCloud or iTunes
    http://support.apple.com/kb/ht1766
    iTunes: About iOS Backups
    http://support.apple.com/kb/ht4946
    Use iTunes to Restore your iOS Device to Factory Settings
    http://support.apple.com/kb/ht1414
    Various issues from many different users have been solved by this. I've lost count on how many have been helped by this, so far. But, it doesn't mean EVERYONE will be helped, but I've seen a whole lot. You can only try and see ...
    iPad 2 and iOS 8.0.2 Problems
    For all iPad 2 owners, this is an important solution for you! These problems result from long-term use, continuous upgrades, corrupted files and various glitches that happen over this long term use. You just need to get your iPad 2 back to FACTORY FRESH CONDITION to start out clean!
    Here's one person's solution which will help a lot of iPad 2 users!
    keithfrommariettaOct 12, 2014 3:25 PM Re: IPAD2 very slow after IOS 8 upgrade
    Re: IPAD2 very slow after IOS 8 upgradein response to pacoKAS
    SOLVED:  IOS 8 Issues on iPad 2:
    I just returned home from a visit to the Genius Bar. Like you and many others, when I upgraded my iPad 2 to IOS 8, it became practically unusable. It was VERY slow, lagged whenever trying to to do anything. Lots of screen freezes and apps spontaneously crashing. I was convinced that the processor on the iPad 2 just couldn't handle the new IOS and I went in to see about restoring to IOS 7.
    Thankfully, I was hooked up with a very sharp guy at the bar. The problem is not with the OS, it is with it being an *upgraded* OS. He used the analogy of when you had an older Windows computer and how over time (and over upgrades), they just tended to get slower and slower because of all of the garbage that was carried forward in the upgrades. At those times (and if you've ever had a Windows computer, you get this), the only thing that would speed it up would be to wipe the machine and do a fresh install of the current OS and then reload your apps, and the viola, everything would be fast again. Well, it turns out that IOS can suffer the same problems.
    THE FIX:  FIRST, be sure you have a current iCloud backup of your device.  Connect your iPad to a computer that has a clean fresh copy of IOS 8 on iTunes (this is best done with a computer other than the one that you sync your device to because you DO NOT want to restore it from a back up just yet). Ideally, if you do this at an Apple store you'll be assured of the right version there and someone to answer any questions you might have along the way. You then hold the power and home button down to hard-reset the device and continue to hold them down until it reboots into recovery mode. You then follow the instructions on the computer to reinstall the OS on the device (which wipes everything from it and then reinstalls a clean copy of it). Once this is done (which only takes about 15 minutes), your device will reboot and ask you to set it up. Answer the questions about language, location, etc. and continue until it asks you to log into your iTunes account. Once you do that, it will ask if you want to either 1) Set it up as a new device, 2) Restore from iCloud, or 3) Restore from iTunes. Choose (2), restore from iCloud. This will ensure that it brings down "clean" copies of all of your apps and preferences rather than the potentially corrupted ones that might reside in your iTunes backup. That's it! It will take a few hours depending on how much data and apps you have, but I am happy to report that my iPad 2 is now running IOS 8 and it's running as fast as it ever did when it was brand new!
    To sum it up, this process 1) Wipes your device and the garbage causing your problems, 2) Loads a clean and bug-free version of IOS 8 to your device, and 3) restores your apps and data so that it looks just like it did before the wipe, with the exception that it works now!  :-)
    Note also that by following this process you don't have to go through the painful and laborious process of reloading all of your apps, data and/or settings. iCloud takes care of all of that for you.

Maybe you are looking for

  • ISE 1.2 - Multiple NICs/Load Balancing for DHCP Probe

    Hello guys Just prepping an ISE 1.2 patch 8 setup in our organization. I am going for the virtual appliances with multiple NICs. It will be a distributed deployment with 4 x PSNs behind a load balancer and there is no requirement for wireless or gues

  • RFC Destination does not work for /sap/xi/adapter_plain service

    Hi We are facing a strange issue. Our business partner is trying to connect to our XI box, RFC Detination type 3 through a reverse proxy at our end. If he used /sap/xi/engine service, he gets a 500 response " empty request received". Howerevr if he c

  • Posting date  = Key date

    hi all, i am a beginner to sap bw, and learning FI AR.  for the 0FIAR_c03_q005 query, they use the posting date <= Key date. I didn't understand the meaning of posting date and key date. can you help me? thanks

  • How to analyze result of SXMI_XMB_SYSLOG_READ?

    Hello Experts, I'm trying to write a parser to retrieve system log contents of SAP system using SXMI_XMB_SYSLOG_READ for system monitoring purpose.  I wrote a parser analyzing couple of the actual result, but I could not find any specification docume

  • Time conversion form calday to quarter.

    Hi, I have calday in ODS with format (MM/DD/YYYY). Now in Cube I want 0fical week and 0fiscal quarter. pls give me the logic. fiscal year starts from 1st-oct. Regards, Sai