A problem with Yotube Videos that run on flash

Yotube Videos that run on flash load for a while then stop loading permanently and the video freezes. Im not experiencing this problem with videos that don't have adds and use HTML5 .I have tried everything from reinstalling flash to removing cookies to trying other web browsers. please help.
(note that bofor this problem happened i updated to the latest version of mountain lion)

amad55 wrote:
i just relised that the problem happens to videos that only have a (MACKEEPER) add , when different adds appear the videio works normaly and doesnt freez, what do i do ?
Since you mention MacKeeper, I'd suggest taking a look at this thread: https://discussions.apple.com/thread/3952819

Similar Messages

  • I am having problems with certain websites that require adobe flash player because of the restrictions that apple has put in place. Is there a way to get to sites that require flash player?

    I am having problems with certain websits that require adobe flash player

    Please don't start the 1 millionth thread on this subject, which has been answered over and over and over and over and over and over and over.........Use the search bar and type flash and you'll see thousands of posts on this.

  • How can i get my Ipad to download videos that run on flash

    how can I get my IPad to download videos that run on flash

    You don't.
    Adobe does not make a flash player for ipad.
    Do a forum search as this is discussed over and over and over and over and over again on these forums.

  • Problems with other programs that run bad in processor intel

    Hello my friends I bought one mac mini Intel Core duo to optimize my work like designer, but programs like Adobe photoshop, indesing Cs, give me problems and it is put very slow. I have in my office a Powerpc G5 of 1,6 uni processor and have installed same programs. Why they run very slow in mini mac if it has a double processor?

    They are running slowly because none of the Adobe products have yet been released in a format native to the Macs with Intel processors. Adobe's applications are all still only native to the PowerPC processor and so must run in the Rosetta PPC emulation mode, which is much slower than native software. Unfortunately, you'll have to live with this until Adobe releases Intel-native versions of their Mac software, currently not scheduled for release until some time in mid-2007.
    The same will apply to any other software you have; if it's not what Apple calls a Universal Binary which has the programming code for both PowerPC and Intel-based Macs, it's going to run more slowly than would software that's native to the Intel processors. Check with the application's developer about the availability of an Intel-native version.

  • Itunes 7.0.1 still has major problems with jerky video

    I thought the newest update to Itunes 7 would fix my problems with jerky video that have begun since this Itunes 7 came out. At first I thought maybe my computer was too old (powerbook 12" 1.5 Ghz, with maxed out RAM) to play the new resolution, but then I realized that even my old TV shows had jerky playback. It doesn't seem to matter what size. The audio works fine, but the video freezes every few seconds. This is not really acceptable and I'm thinking about uninstalling Itunes 7 until apple issues a fix that address this video playback issue. Anyone have any suggestions or heard anything? Thanks!
    - Tpetdoctor

    I located the problem of the jerky (1 to 2 frames per second) video that started after updating to iTunes7 and 7.0.1!
    Dragging (copying) the file "ATIRadeon9700GLDriver.bundle" from system/library/extensions/ to the desktop and deleting it from the extensions folder (or else simply deleting it and then dragging it from the trash to the desktop) returns normal smooth video to non-H.264 mpeg video on my second generation iMac (ATI Radeon 9600). Unfortunately, this also makes Coverflow stop working with the message "iTunes is unable to browse album covers on this computer". I'm not sure what else will be disabled by moving this file.
    Obviously, this is not a solution, or even a feasible workaround. Where can I get a "good" ATI driver? I went to the ATI site "https://support.ati.com/ics/support/default.asp?deptID=894&task=knowledge&fold erID=27" and tried installing "macosx-ati-displays-4-5-7.dmg", but to no avail.

  • Hi! I´m having problems with showing video files in Qlab on my Macbook Air. A sound/video technician told me to "blow out" my Mac. Was told to use  cmd+ r  when restarting. Is this the right way?

    Hi! I´m having problems with showing video files in Qlab on my Macbook Air. It started suddenly. Consulted a sound/video technician who told me to "blow out" my Mac. Was told to use cmd+r  when restarting. Is this the right way to clean up my Mac? And is it likely that some kind of bug is causing problems for Qlab to show video files? I´ve already tried with a bunch of different video files and sometimes Qlab plays them and sometimes not. I need the Qlab playlist for a theatre show and only have a week until showtime so starting to really worry. Is there anyone out there who can help?

    Your Mac runs maintenance in the background for you.
    Command + R gives you access to restore, repair, or reformat the drive using OS X Recovery
    No idea why that was suggested.
    You may have a third party video player installed that's causing an incompatibility issue.
    Check these folders:
    /Library/Internet Plug-Ins/
    /Library/Input Methods/
    /Library/InputManagers/
    /Library/ScriptingAdditions
    ~/Library/Internet Plug-Ins/
    ~/Library/Input Methods/
    ~/Library/InputManagers/
    ~/Library/ScriptingAdditions
    The first four locations listed are in the root-level Library on your hard disk, not the user-level Library in your Home folder.The tilde (~) represents your Home folder.
    To access the Home folder in OS X Lion or Mountain Lion, open the Finder, hold the Option key, and chooseGo > Library.

  • Memory leak problems with loading videos over and over.

    I'm having memory leak problems with loading videos into a VideoPlayer aswell as FLVPlayback.
    What the flash should do:
    - Should be running for 7 days without having to restart the projector.
    - Interface that shows people around a 360 3D model with 5 different parts and at the stops it makes during the rotation you can click to zoom in on a location which plays a movie for that aswell.
    - Shows a video out of 5 parts for a 360 rotation in 3D in mp4 video (added each time and cleaned up, see code below).
    - Still images are used when the video clips are done playing (MovieClip in stage).
    - Should run automatically when there is no user interaction for X minutes.
    What the problem is:
    - The flash (as a exe and swf i guess) starts to consume memory over time (say 10 hours) until the projector crashes. This usually at around 1.75 GB of memory.
    I cannot see why the Flash cannot garbage collect this and free up the memory. Mabye there is something I don't understand about the garbage collection in flash?
    Here is some code from the video loading and playing:
    var fVideo:VideoPlayer;
    VideoCreate();
    function VideoReady(pEvent:VideoEvent):void
    trace("VideoReady()");
         // start playing video
    fVideo.play();
    function VideoLoad(pUrl:String):void
         trace("VideoLoad(" + pUrl +
         VideoCreate();
         if (pUrl != "")
              if (fVideoFolder + pUrl == fVideo.source)
                   fVideo.seek(0);
    VideoReady(null);
              } else {
    trace(fVideo.state);
                   if (fVideo.state !=
    VideoState.DISCONNECTED) fVideo.stop();
    fVideo.close();                                
    fVideo.load(fVideoFolder + pUrl);
         } else {
    // error no url
    function VideoCreate():void
         trace("VideoCreate()");
         // remove old one
         if (getChildAt(0) == fVideo)
              removeChildAt(0);
         fVideo = new
    VideoPlayer(1024, 768);
         addChildAt(fVideo, 0);
         fVideo.autoRewind = false;
    fVideo.addEventListener(VideoEvent.COMPLETE, VideoDonePlaying);
    fVideo.addEventListener(VideoEvent.READY, VideoReady);

    Hmm. It's in connection with Dropbox. Så apparantly you can only use one of the two at the same time if you want the programs integrated in Finder.

  • I'm Having problems with the video freezing and the sound carrying on since I up graded my iPad to ios8  BBC IPLAYER

    I Am having problems with the video freezing and the sound carrying on whilst watching BBC IPLAYER ITV PLAYER until I reboot video and the problem acures again

    Your Mac runs maintenance in the background for you.
    Command + R gives you access to restore, repair, or reformat the drive using OS X Recovery
    No idea why that was suggested.
    You may have a third party video player installed that's causing an incompatibility issue.
    Check these folders:
    /Library/Internet Plug-Ins/
    /Library/Input Methods/
    /Library/InputManagers/
    /Library/ScriptingAdditions
    ~/Library/Internet Plug-Ins/
    ~/Library/Input Methods/
    ~/Library/InputManagers/
    ~/Library/ScriptingAdditions
    The first four locations listed are in the root-level Library on your hard disk, not the user-level Library in your Home folder.The tilde (~) represents your Home folder.
    To access the Home folder in OS X Lion or Mountain Lion, open the Finder, hold the Option key, and chooseGo > Library.

  • I'm having problem with exporting video from premiere pro cc 2014

    I'm using Adobe Premiere Pro CC 2014 and I'm having problem with exporting video.
    When I click Export and media, the window for exporting appears and it starts exporting video.
    But after a few minutes, it looks like it has completed exporting video and says there's a bug in exporting.
    It literally says it has a problem with compiling, but I don't know what the real problem is.
    I tried many things like restarting computer and Premire Pro but it's no use.
    But it works when I use Adobe Media Encoder CC 2014 for exporting video.
    If anyone knows any possibilities about why this problem happens, please let me know.

    I'm having a similar issue.  When I go to export my project, I add it to the render queue, set it up with the h.264 settings that I've used with countless past versions of the program, and then hit render.  Randomly, at some point in the process, the render just stops and the ETA just keeps climbing.  I actually had to save an XMF file of the CC 2014 project and bring it into the previous CC version of Premiere just to finish it.  Even a clean re-install of CC 2014 doesn't work.

  • Problem with Nokia Video Manager - No video, only ...

    Hi all,
    I have a problem with nokia video manager. I have been converting movies to mp4 and watching with my cell phone for a while now. But all the videos I have converted were less than 30 min. long.
    When I tried to watch a video longer than 36 minutes, the picture froze some time around 36th minute and only the sound continued to play. I have tried several other videos with similar lenghts and all seem to freeze at the same exact point. The player continues to play the sound after picture freezes.
    Could someone please help ???
    Regards
    /Cenk

    Hi davidf
    Thanks for the information,I must confess that I always use:
    http://www.slysoft.com/en/clonedvd-mobile.html
    when transferring movies to the N95, but that is just a personal choice!
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Having Problem with stuttering video. Please help!

    I haven't had a problem with viewing video online with my laptop until a few days ago. Now, all it will do is start to play, then freeze, play for a few seconds, then freeze, etc. etc. If I am on Hulu and pause the video to allow it to buffer, it will go good for a few minutes then start the same thing over again. I have done the same thing on CBS.com, but the results haven't been as good as on Hulu. I have noticed that it is considerably worse when the commercials start. I tried uninstalling my Flashplayer several times to no avail, and I even uninstalled my Antivirus and reinstalled that thinking that might be the problem. Tried right clicking on the player when it's in use and disableing the hardware accelerator in the settings, but that didn't help. I am about ready to pull my hair out!
    OS is Windows Vista Home Premium Service Pack 2
    Using Mozilla FireFox version3.6.8 and Internet Explorer 8 version 8.0.6001.18928
    Have Adobe Flashplayer version 10.1.53.64
    antivirus is Avast! Free version 5.0.594
    If there is any other info needed, let me know!

    is a video card problem for acne

  • Having PROBLEM with playing videos on my 5800

    Hi all,
    I bought my nokia 5800 2 days ago, and i am havig a problem with my videos.
    When i try to play a video (MP4) SOMETIMES it plays it without a problem, but SOMETIMES it plays a black screen with sound. And the most strange thing is it can play a video and in few hours it will just play sound on the same video!!
    Please try to help..

    pavilion_alex wrote:
    phones like 5800 and other similar must be updated because a new update solves the existing problems on the device.
    download and install this http://www.nokia.co.uk/get-support-and-software/download-software/device-software-update/download and carefully read the instructions it gives you before the update.
     ...Or return the phone and replace it with something from another manufacturer that either A) works out of the box, or B) doesn't require such an awkward and painful update procedure. Nokia seem incapable of either.
    Message Edited by garnett on 26-Oct-2009 12:49 PM

  • Have problems with Mail on MacBook running OS X Mavericks. It suddenly became stuck: won't quit and won't display any messages. Please help.

    Have problems with Mail on MacBook running OS X Mavericks. It suddenly became stuck: won't quit and won't display any messages. Please help.

    Select Force Quit from under the Apple menu and select Mail (it may say that it isn't responding).
    Clinton

  • Defect MacBook 2011. Problems with the video chip.

    I was faced with the legendary defect MacBook 2011. Problems with the video chip. Heard about what Apple makes replacement chips for free. My friend a year ago made the change in the service center. Is this true now?

    Since Apple says that some copy protected DVD's will not function with Disk Sharing, you may need to "clone" the DVD, using the MBP, to a flash drive, and use the flash drive to perform the installation of the software.
    Another alternative is to download and install the Trial version from the Microsoft Office For Mac website, and then use the activation code provided with the DVD to activate the full version install of the trial.

  • Having lagging problems with YouTube videos, it simply takes so long for the red bar to completely load and the videos frequently pause and take too long to restart playing again.

    I have been having lagging problems with YouTube videos for a number of months now. It simply takes so long for the red bar to completely load and the videos frequently pause and take too long to restart playing again. Even with little 2 and 3 minute videos.
    I have a fast computer and my webpages load really, really fast. I have FireFox 4 browser and a Vista Home Premium 64-bit OS. So I don't have a slow computer or web browser. But these slow YouTube vids take way too long to load for some reason.
    Does anyone have any idea how I can speed up YouTube?

    Hi
    The forums are customer to customer in the first instance, Only the mods (BT) will ask for personal information through a email link. Would you mind posting your Hub stats & BT speed test results this will help all with diagnosis-
    To post the full stats from your router
    for home hub - 192.168.1.254
    Navigate to ADSL Settings or use the A-Z at the top right
    Click on More Details and then post the results.
    Run BT speed tester and post the results from http://speedtester.bt.com/
    If possible it would be best to connect to the BT master socket this will rule out any telephone/broadband extension wiring also consider the housing of the hub/router as anything electrical can cause problems as these are your responsibility, if these are found to be the case Openreach (engineer) will charge BT Broadband, which will be passed onto you, around £130.00.
    Noisy line! When making telephone calls, if so this is not good for your broadband, you can check-
    Quite line test dial 17070 option 2 and listen - should hear nothing best done with old type analogue phone digital (dect) will do but may have slight hiss If you hear noise- crackling pops etc, report it as a noisy line on your phone, don’t mention broadband, Bt Faults on 151.
    As for your FTTC its available in some areas between 40% & 80% of customers in enabled areas can receive it!
    Mortgage Advisor 2000-2008
    Green Energy Advisor 2008-2010
    Charity Health Care Provider Advisor 2010-
    I'm alright Jack....

Maybe you are looking for