Video on youtube freezes for a moment

On youtube when I start playing a video the picture freezes for a few seconds, sound works ok, then it plays as it should be. this happens in a safe mode too. hardware acceleration is disabled.

Read these articles . This may help you .
*https://support.mozilla.org/en-US/kb/troubleshoot-extensions-themes-to-fix-problems
*https://support.mozilla.org/en-US/kb/upgrade-graphics-drivers-use-hardware-acceleration

Similar Messages

  • Hi .. While working in PS it is freezing for a moment and wild purples and greens make large pixel patterns behind the program on the desk top. Any ideas ? Thanks.

    Hi .. A never before seen problem for me .. While working in PS with large files , the program freezes for a moment and bright pixels of flourescent colors of purple  and green fill parts of the background screen behind Photoshop. Its getting worse ? The programs are running extremely slow also. Thanks for any ideas.

    You can't and don't have a PowerMac (G5).
    Repairing Permissions, likely just waste of time.
    REPAIR the HARD DRIVE instead.
    Blowing dust around inside is a really bad idea. Or in the house.
    http://support.apple.com/kb/TS1417

  • System freezing for a moment before playing videos - MSI GT 70

    Every time i double click a movie, windows freezes for like 1.5 second before playing the movie. it is not just a normal OS thing. it ALWAYS happen when i play videos. I received my laptop 4 days ago and this is the only problem i found so far. it may not be a big deal but im kinda worried because of some dude on amazon (who, btw, bought his GT70 from the same patch i bought mine from) wrote an angry review complaining about crashes when playing videos.

    Quote from: Mr Strange on 22-October-12, 05:31:27
    online videos are fine, so is audio files. the freeze only happens when i play the usual video files i download.
    try play them with different player

  • Podcasts and tv shows videos stop and start when playing.  The Audio flows fine, but video freezes for a moment and continues.  Do you know what I can do to fix?

    When watching a podcast or tv program on itunes the video freezes and starts.  The audio still flows just fine.  Do you know what the solution might be?

    set the wake-on lan on the main computer
    The laptop's too far away from the router to be connected by ethernet. It's all wifi.
    No separate server app on the laptop, it's all samba
    The files are on a windows laptop and a hard drive hooked up to the windows laptop. The windows share server is pants, so I'd need some sort of third party server running. Maybe you weren't suggesting to use Samba to connect to the windows share though?
    I'm glad that you've all understood my ramblings and taken and interest, thanks The way I see it, I can't be the only netbook user these days looking for this kind of convenience, and I certainly won't be once chrome and moblin hit the market.
    Last edited by saft (2010-03-18 20:38:08)

  • Why does downloaded videos from iTunes freeze for a few minutes and then continues. this happen with my iPod Touch 4G and iPad 2.

    When I try to watch downloaded TV and Movies from iTunes they will pause for a minuite or 2 and then continue. I have an iPod Touch 4G and an iPad 2. Both have the same problem when trying to watch the shows. Plus. When I try to watch the iTunes TV and Movies on my Windows 7 Desktop the audio is never in sync and usually stops playing.

    Im having the same problem with my g4 iPod touch and it is driving me nuts. The freezes happen with downloaded movies ON my ipod, not my computer so these suggestions won't work. I read that the same problem is happening with rentals. I would love to know why this is happening. I would like some answers... and a way to fix it.

  • Mostly 80% of all the time when i open new tabs my firefox freezes for several moments like 15 seconds then it open the new tabs

    For example when i open about 5 links on google search i open them in new tabs..fire fox freezes totally freezes and the "Warn me when i open over loaded tabs" is checked on. and some times it is not about new 5 tabs some times when i open just 1 ..please help me

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Program in WPF C# using .mdf database with LINQtoSQL freezes for a bit when I load the database

    Hello everyone, I have the following code that I run inside a button clicked event in order to compare the username and password
    given by the user.
    public static bool isAuthenticated(string Username, string Password)
    //Open a connection with the databas
    using (WHDataDataContext db = new WHDataDataContext())
    //Compare the Username and the password and return the result
    return db.Users.Any(check => check.Username == Username && check.Password == Cryptographer.Encrypt(Password));
    and I use the code like this
    private void Button_Click(object sender, RoutedEventArgs e)
    //Access the DatabaseControls class and use the isAuthenticated Method
    if (DatabaseControls.isAuthenticated(UserBox.Text, PasswordBox.Password))
    DialogResult = true; //if the result is true close the dialog
    DatabaseControls.setConnected(UserBox.Text, true);
    else if (UserBox.Text == "" || PasswordBox.Password == "")
    //if the user didn't fill any of the requested boxes show warning
    MessageBox.Show(this, "Το όνομα χρήστη και ο κωδικός δεν μπορούν να είναι άδεια", "Προσοχή!", MessageBoxButton.OK, MessageBoxImage.Warning);
    if (UserBox.Text == "") UserBox.Focus(); //if the UserBox was empty focus it
    else PasswordBox.Focus(); //else focus the PasswordBox
    else
    //if the result is false show an error and select the UserBox
    MessageBox.Show(this, "Δώσατε λάθος στοιχεία, παρακαλώ προσπαθήστε ξανά!", "Σφάλμα", MessageBoxButton.OK, MessageBoxImage.Error);
    UserBox.SelectAll();
    UserBox.Focus();
    My problem is that when I hit the button the program freezes for a moment and the it responds.
    I have used this code on a c# application with .sdf file (SQL CE) and I haven't experienced this issue.
    I have already tried using threads (Task.StartNew and BackgroundWorker) but I got the same result.
    I have also created the DB Context once instead of using (DBContext db = new DBContext()) everytime and I still got the same result.
    Could anyone please help?

    Async features should have addressed it, you may not just be doing things properly.
    Try implementing things this way:
    1. If you're not using EF 6 which is the latest version then update your project first. This will allow you to take advantage of EF's async methods.
    2. Implement your isAuthenticated method in this manner:
    public static Task<bool> isAuthenticatedAsync(string Username, string Password)
    //Open a connection with the databas
    using (WHDataDataContext db = new WHDataDataContext())
    //Compare the Username and the password and return the result
    return db.Users.AnyAsync(check => check.Username == Username && check.Password == Cryptographer.Encrypt(Password));
    3. Implement your Button_Click event handler in this manner:
    private async void Button_Click(object sender, RoutedEventArgs e)
    //Access the DatabaseControls class and use the isAuthenticated Method
    var authenticated = await DatabaseControls.isAuthenticatedAsync(UserBox.Text, PasswordBox.Password);
    if (authenticated)
    DialogResult = true; //if the result is true close the dialog
    DatabaseControls.setConnected(UserBox.Text, true);
    else if (UserBox.Text == "" || PasswordBox.Password == "")
    //if the user didn't fill any of the requested boxes show warning
    MessageBox.Show(this, "Το όνομα χρήστη και ο κωδικός δεν μπορούν να είναι άδεια", "Προσοχή!", MessageBoxButton.OK, MessageBoxImage.Warning);
    if (UserBox.Text == "") UserBox.Focus(); //if the UserBox was empty focus it
    else PasswordBox.Focus(); //else focus the PasswordBox
    else
    //if the result is false show an error and select the UserBox
    MessageBox.Show(this, "Δώσατε λάθος στοιχεία, παρακαλώ προσπαθήστε ξανά!", "Σφάλμα", MessageBoxButton.OK, MessageBoxImage.Error);
    UserBox.SelectAll();
    UserBox.Focus();

  • I upgraded to Lion and then all video clips on for instance Youtube freeze every tenth second to buffer more data. I have a MacBook Pro and never had any problems when using Snow Leopard. Ulf Magnusson, Sweden

    I upgraded to Lion and then all video clips on for instance Youtube freeze every tenth second to buffer more data. I have a MacBook Pro and never had any problems when using Snow Leopard. Has Lion problems with this?
    Ulf, Sweden

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Firefox freezes for around 10 seconds when loading a video on YouTube

    So everytime I'm loading a video on YouTube, it takes a very long time to load (10-15 seconds) and while the video is loading Firefox becomes completely unresponsive. I can't do anything until the video is loaded, and when it takes such a long it becomes annoying.
    I have the newest versions of both Firefox and Flash Player.

    Does this happen with other browsers as well? If no, maybe an extension is interfering. Here is how you can disable them to test that: https://support.mozilla.org/en-US/kb/Uninstalling%20add-ons#w_how-to-disable-extensions0-personassf-and-plugins

  • N8 - Recording video freeze for a while

    Hi!
    My problem is that when I record video with my N8, in 1 of 3 times that I use, the video get freeze for a while, and that affect the final result. I put a video to help you understan it better (sorry for my description and my English, but it isn't my nativa spoken language )
    http://www.youtube.com/watch?v=E9pv8xXq7XQ
    En the 6 second the image freeze a while, can you see it? It happens lot of times, and I made hard-resets, upgrades of firmware...all I can imagine trying to repair, but I couldn't get any result
    Does it happen to your N8's? Or have you got any odea of a solution?
    Thanks!

    Without system information and other details nobody can tell you anything. This could simply be some online feature like TypeKit taking a moment to check the connection or whatever...
    Mylenium

  • Just done a fresh install of Snow Leopard with all updates,iMac 5.1 behaves strange, sometimes I start Google Chrome and look at youtube videos the computer freezes and shuts down immediately, I believe its  related to overheating ?

    Just done a replacement of the pata DVD drive (its new and is working ok),  and a fresh clean  install of Snow Leopard with all updates, iMac 5.1 behaves strange, sometimes I start Google Chrome and look at youtube videos the computer freezes and shuts down immediately,
    I believe its  related to overheating ?
    iStat Pro shows GPU diode temp at 66 C, CPU at 48 C,  Fan rpms is around 1000
    Any ideas somebody ?
    The hard disk has been previously checked with state of the art techniques that have confirmed that the hard disk drive is in perfect condition.

    1.5-3 minute boot up as opposed to 15-20 seconds
    And
    why it takes a long time to load a lot of things.
    I have restored this
    from a time machine partition.
    TimeMachine is only a backup and restore, it won't fix issues in software and according to your information, doesn't even optimize the restore for best performance on boot hard drives.
    What you need to do to regain your speed is to understand how your machine works
    Why is my computer slow?
    Fix any and all issues in software following this list of fixes
    ..Step by Step to fix your Mac
    Then follow this defrag method I've outlined
    How to safely defrag a Mac's hard drive
    Most commonly used backup methods
    There shouldn't be need to reinstall OS X fresh unless your having file structure issues which if they are should appear when in the Steps, which then a zero erase and install will cure as well as any bad sector issues, the defrag step wouldn't be necessarry on a freshly installed system obviously as the files are written all together, not in portions all over the drive.
    Hope this assists.

  • Windows 7 64 bit: I just upgraded Firefox to 7.1 , I can't watch video on youtube, video freezes, then the browser freezes. I right click on the icon showing the page is open on the taskbar & click close then cancel, it starts then freezes again?

    When I watch any video on youtube, every video first starts with short freezes then freezes the Firefox 7.1 Browser window. I have to right click on the icon that shows the browser is open on the taskbar at the bottom of windows and then click on close& cancel to get it to start working again. Also, on any site, I am having problems with links & functions that suddenly stop working, site connections being dropped frequently for no reason, my Modem is stable & internet shows connected. On facebook when I click a button(photos) it doesn't work, in Amazon I click on "submit" and the button stops functioning, in yahoo mail I can click on a button to "send" mail and it won't work. I can open them in IE9 or Chrome but not in Firefox. I have tried disabling all plugins.I also have tried disabling all but flash and still the problems persist. I have uninstalled and reinstalled FF.

    Command + R *should* take it to a recovery console. Command + Option + P + R resets the PRAM, but that doesn't sound like your fix.If all of your buttons are working fine on OSX side, I would ignore PRAM / NVRAM / SMC reset tricks, since these are tested as working fine. 
    I would say you should probably reinstall the drivers for bootcamp. I tried this with 5 in Windows 8 and it gives you an option to repair. The reason I say this is because the UI isn't showing up, which means that it's using another driver.
    If this doesn't work, go into device manager and then roll back to your previous settings.
    One more thing comes to mind. Do you ever use Parallels or VMWare to load your bootcamp partition? They have their own driver packages which can cause some unwanted behavior when using windows natively.
    One last thing you can do is try to by-pass the GUI powerplan entirely. You can use the Powercfg command, which, as it happens, has instructions on how to forcefully set the brightness values. You probably won't be able to make it through these instructions since you will get an error at some point, but that will give us more diagnostic information.
    Good luck!

  • Firefox freezes for up to a minute when I have two tabs open and running a video and a flash game. Why?

    Firefox freezes for up to a minute when I have two tabs open, one playing a YouTube video, the other with a flash game running, and the screen shows the contents of both tabs, one superimposed on the other. If I have other tabs open, they also appear as visual garbage on the same screen. After the freeze, everything semi-works, starting and stopping, with long frozen hangs.The frequency of this problem is increasing and greatly reduces Firefox's operating capacity. I am using Firefox 5.0 on a Windows Vista desktop made by Hewlett-Packard. I have cleared the caches and the problem persists, and I can't find any online help to explain why this is happening. I don't recall it happening with a previous version of Firefox.

    Hello jesterabk, '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Every time I watch a video on youtube (on any browser) my macbook pro starts freezing

    Hello everyone,
    Every time I watch a video on youtube (on any browser) my macbook pro starts freezing half a minute, works fine for 10 seconds, then freezes again... This started a couple days ago. The only solution is to restart and not watch video's... Anyone know how to solve this?
    I have a pretty old macbook pro, from around 2006. I've never had this problem...
    Thanks,
    Tommy
    P.S. My family is currently deleting some items and it seems to be working, I'll update you if the problem is fixed.

    Reinstall Flash Player?  YouTube is Flash based.

  • I have a Mac Air.  When I go to view any video online (youtube for example)and click on a video, I get the space where the video should play but there is just a black screen and no play button and the video does not start.  Any ideas?

    I have a Mac Air. When I go to view  video online (youtube for example), the screen for the video comes up with a black square space where the video should play.  But there is no pay button and the vidoe never starts playing.  Any suggestions would be appreciated.

    Shockwave and Flash are not the same. Try installing a Flash plug-in. Here's the latest: Adobe Flash Player 11.2.202.183

Maybe you are looking for

  • Can't find my album on photo

    I have edited and created a new album for my pictures in photo and when I try to access it in order to add it to Dropbox it is not accessible. It's as if it's not there, but I can find it in Photo when I look for it there.

  • Problem in standard workflow of claims in ESS

    Hi , I am functional consultant and I am facing problem in standard workflow of claims WS18900023 . When approver clicks on approve button it gives message that ' Validation is succesful 'and it does not get approved. When approver clicks on Approve

  • How to extract data from MDTC table.

    Hi all. I want to fetch data from MDTC table. But in that table field CLUSTD contain compressed data. How can i extract that data. Can i extract data for structure MDPSX. is MDTC table is used in function module MD_STOCK_REQUIREMENTS_LIST_API . Pleas

  • Prompt problem in BO6.1

    Hello, I am using BO 6.1. I have some questions: 1. Suppose I created a prompt for countries. At run time it will show all 50 countries. How can I make it show only 10 countries? I could not make @Prompt function working. I am still unsure how can I

  • JScrollBar - Issue when changing models

    Hey All- Well, I've come up with another interesting question which I haven't been able to resolve myself. Basically, I have a single view port which consists of a custom JPanel and (2) JScrollbar's. I then have multiple data and view models which ar