Severe buffering problems when streaming

In the past couple of days, I have begun experiencing severe buffering problems when streaming video on the web. The video plays for like 6 seconds and then it pauses for like 6 seconds and continues this pattern over and over. This problem occurs regardless of which web browser I am using. I know the problem is not caused by the internet connection because I did a speed test and it is currently operating at 12mbps.  I have tried streaming video on another computer and it worked fine.

Welcome to the Apple Community.
Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

Similar Messages

  • Problem when streaming with the CLI flash media encoder 2.5

    I have a problem when streaming with Flash Media Encoder 2.5. When I run the GUI, everything works, but when I use the commandline with the same profile I have created using the GUI, it says it can't connect to the server.
    I have to use this version of the encoder, because the other is not working with the server, and I have to create a program to remotely control the flash media encoder, so I have to use the CLI. What can i do to go over this problem?
    Any help would be really appreciated. Thankyou.

    First of all, thankyou.
    There is no authentication needed. I can't use Flash Live Media Encoder 3 because it is not supported by the people which manages the server i have to connect to.
    In fact, I don't know why they dont support it, but that is the way it is.
    Through the GUI, i connect directly and without problems, without user/pass.
    Thankyou again.

  • My apple Tv has audio problems when streaming from my NAS server.

    My Apple TV has audio problems when streaming from my NAS server or computer and even internet. I can hear the click sound it makes when you click on the icons, but when the movie starts there is no audio. This even happens when using XBMC. I have HMDI directly to my TV suing Apple TV 2. I have tried resetting, turning off both TV and Apple TV, and changing the HDMI cable. It is driving me nuts.

    XMBC requires a hack, we cannot help with hacked devices.

  • My ATV 3 has really bad buffering problems when using Netflix.

    Playing the same Netflix content on my PC is fine with no buffering at all. I can see the progress bar filling up beyond the point at which I'm watching.
    Why doesn't the ATV 3 progress bar show that too?
    Pausing the movie for 5 minutes or more doesn't help. I would have expected that this would help fill the buffer, but no matter how long I pause it still stutters every 30 seconds or so. Makes me wonder if the ATV 3 is buffering at all.
    This problem happens with SD content too. Watching "The Game" last night was fine for first 50 minutes then after that the movie pauses every 20-40 seconds. Eventually watched the 2nd half on my PC with no problems.
    Streaming 1080p itunes content on my PC to ATV3 works perfectly.
    ATV 3 is connected via ethernet - not wifi - to my router - same router my PC is connected to.
    I reckon that there's no problem getting the content from Netflix to my house - its only what ATV 3 is doing.

    Thanks for the reply, Huffer. I was plugging it into one of the 3.0 ports. I just tried the 2.0 port. Disk Management successfully loaded, and presented me with an "Initialize Disk" window (I hit "Cancel"). It showed that HDD as "Not initialized" and having no partitions (all space unallocated). No new drives appeared in Computer.
    The drive behaved fine when used with my old laptop (the issue with that laptop is a power supply issue, not a drive issue). I don't have another working computer to try it in, nor do I have another drive to try in the docking station.
    I assume that I should not initialize it, as that may make my data more difficult to recover, correct? Is problem likely my laptop, the docking station, the drive, or an incompatibility issue? What utility might I be able to use to see this partition and copy my data over?

  • Has anyone had buffering problems while streaming after upgrading to 7.1?

    I have had no problems with streaming content until the iOS 7 upgrade and I had to totally redo my ipad.  Now I am having the same problem after upgrading to 7.1.  Thanks for any help.

    I have Parallels 6, purchased about 10 months ago. It does not work on ML. No support from Parallels. I find this outrageous

  • WRT54G ver 6. Buffering problems when viewing live streaming Video!

    Whenever my computer is connected to the computer through linksys WRT54G router, Windows Media Player do a lot of buffering. (after every 10 seconds or so). But when I connect to the internet directly through the cable modem, I don't see any buffering and I can watch the video without any problem.
    Any advice!

    I've tried most suggestions with no luck.  I've got a WRT54G v6 router with the 1.01.1 updated firmware.  Videos from MSNBC, CNN, CBS, etc... just don't want to run smoothly- and this is on a wired connection to the router.  All 3 computers hooked to router have this problem.  Choppy video or the video stops and the audio continues- or than everything pauses.  I have decent connect speeds- avg test is:
     9.66Mbps or 1.20MBytes/sec... I switched back to my old Linksys wired router and the videos played fine-connections speeds were consistent as well.  I use the wireless access for a Wii. All computers are wired into the router.  I am figuring it MUST be the router since my old router makes the problem go away...but I need the wireless access on the WRT54G for my Wii.  I did not notice if this problem was there before I upgraded the firmware since I did the upgrade when I installed the new router.  Thanks for any advice.
    RandyB

  • Problem when streaming out a binary file

    Hi,
    I am trying to stream out a binary file to an output stream (not a file, but a socket). My file is a gzip file, and I was initially simply trying to open the
    file, read it to a a byte array, and writing it out to my output stream. However, I got corrupted data at my other end and it took me quite a bit of
    debugging hours to find out why.
    I tried writing to a file the same information I was writing to my output stream but, although my file was correct, my output stream still contained
    corrupted data.
    I think I have finally narrowed down my problem to the fact that when I try to write a 0x00 value to my output stream, everything gets ignored from this
    point until I write a 0x0a byte to my output stream. Obviously this produces corrupted data, since I need all the bytes of my binary file.
    If somebody can direct me as to how to write a 0x00 value to a socket output stream, I would really appreciate your input.
    This is a sample of my code (Right now I am writing byte by byte: not very efficient, but was the only way I found where I was getting a problem):
    // out is of type OutputStream
    if (Zipped){
         // In this case we just have to stream the file out
    File myFile = new File(fileName);
         FileInputStream inputFile = new FileInputStream(myFile);
         FileOutputStream fos = new FileOutputStream(new File("/tmp/zip.gz")); //zip.gz results in a good (not corrupted) file.
         ByteArrayOutputStream out1 = new ByteArrayOutputStream(1024);
         int bytes = (int)myFile.length();
         byte[] buffer = new byte[bytes];
         bytes = inputFile.read(buffer);
         while (bytes != -1) {
              out1.write(buffer,0,bytes);
              bytes = inputFile.read(buffer);
         inputFile.close();
         try {
              int count=0;
              bytes=out1.size();
              while (count<bytes){
                   fos.write(buffer,count,1);
    out.write(buffer,count,1); // when buffer[count] == 0x00, everything after it gets ignored until a 0x0a byte is written.
                   count++;
         } catch (IOException ioe) {
              SysLog.event("IOEXCEPTION: "+ioe);
         } catch (Exception e) {
              SysLog.event("EXCEPTION: "+e);
         fos.flush();
         fos.close();
         out.flush();
    out.close();
         return;
    }

    Actually, I had thought about that and for some time I tried getting rid of some of the header information in the gzipped file, and then I stopped doing that when I realized that part of the gzipped file is a CRC value which I believe is computed taking into account both the data of the file and the header information. If this is the case, then getting rid of part of the header would produce a corrupted file ... but then, I might be wrong in this issue.
    Anyway, to make my application more clear, what I am doing is writing the code for a cgi command which is suppossed to access information from a database, create an xml file, gzip it, and then send it to the client who requested the information.
    Therefore, what I am sending is an xml file (Content-Type: text/xml) in compressed format (Content-Encoding: gzip). Note that if I don't gzip the file and then send it uncompressed to the client, I have no problems. However, for me it is very important to gzip it because the size of the file can get very large and that would just take bandwidth unnecessarily.
    On the other hand, if I try to gunzip the file locally, I have no problem either (the file is not corrupt at the server's end). Therefore, my problem is when I stream it out.
    Any further help would be really appreciated!

  • Bad Buffering Problem When Typing E-mail because of Yahoo Ads

    I'm having the same problem!! I've blocked pop-ups, reset my browser, checked browser add ons...talked with tech support at least 6 times and problem is still not resolved.  What is the deal with ATT and their foreign tech support (in India!!)?? It has been suggested that I have a bad virus, I should change my internet browser, I should reset my browser, I need to delete cookies and other suggestions that can't remember at the moment...I finally gave up on tech support. ANY IDEAS???

    I use my e-mail for business and type lengthy e-mails.  For the last 3 weeks, I've had a horrible time with buffering when the Yahoo ads change.  I type without looking, then when I look back up at the screen, half of the info is missing (because of buffering). I've blocked pop-ups, but it doesn't work for Yahoo ads.  I've talked to 3 people @ AT&T Tech Support and they tell me that's tough.  I've got an AT&T e-mail address, Home Page Yahoo.com and log into Yahoo Mail.  Any help out there?  Talk down to me - I'm "fair" when it comes to fixing computer issues.   mwlmhi39 

  • Audio and video problem when streaming after flash player update

    After i updated to the latest flash player (11.7) I have problems with video streaming. The video plays but after a while the audio stops and the video will keep playing but will also stop after a few seconds. Is the new flash player update at fault?

    hello volden, your system details list two versions of the flash plugin (Shockwave Flash 11.7 r700 & Shockwave Flash 11.6 r602) as being installed in firefox, which can lead to problems.
    please try to use the [http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html flash uninstaller provided by adobe] to remove both versions and afterwards only install the current plugin from https://www.adobe.com/go/getflash

  • Having a strange problem. When streaming music and or music videos to my Apple TV from my Mac sometimes the Apple TV seems to loose the stream and the only way I can get it going again is to turn off home share on my Mac and then turn it on again.

    I do not have this problem when streaming music/music videos from my IPAD or my Iphone

    The speed is probably due to your network, it is quite indirect for mirror/AP.
    For the audio, you cannot split audio and video so the audio will play where the video does.
    Jules

  • I have problem when updating the latest version of Pro-X, I tried for several times, so I uninstall and re-install it. It is unsuccessful to re-install the Pro-X and it direct me to ask help from CS,also showing this message: Exit Code: 6  Please see spec

    I have problem when updating the latest version of Pro-X, I tried for several times, so I uninstall and re-install it. It is unsuccessful to re-install the Pro-X and it direct me to ask help from CS,also showing this message: Exit Code: 6  Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW025, DW050 ... WARNING: DW024, DW025 ..., please advice me the step to re-install the Pro-X. Thanks

    Please follow Errors "Exit Code: 6," "Exit Code: 7" | CS5, CS5.5
    Do let us know if it worked.
    Regards
    Rajshree

  • ? I have a problem with the cloud app. i have downloaded it several times and have no problem. when it runs it then opens up but stays blank so i cant see my apps or download any HELP

    ? I have a problem with the cloud app. i have downloaded it several times and have no problem. when it runs it then opens up but stays blank so i cant see my apps or download any HELP

    >opens up but stays blank
    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • MacBook 2.4 Ghz Duo running Mavericks is getting slower and buffering when streaming, Whasup?

    I just got U-Verse and I'm either really, really disappointed in it, or there's something wrong with my little MacBook. It buffers when streaming on the U-verse site. Moving from one tab to another takes lots more time. Frankly, I'm not used to watching TV any longer, but I give up trying to watch "live TV". I've had the Ma Bell repairman out to fix the wifi situation and I think that's ok now. Any ideas?

    I just got U-Verse and I'm either really, really disappointed in it, or there's something wrong with my little MacBook. It buffers when streaming on the U-verse site. Moving from one tab to another takes lots more time. Frankly, I'm not used to watching TV any longer, but I give up trying to watch "live TV". I've had the Ma Bell repairman out to fix the wifi situation and I think that's ok now. Any ideas?

  • 2.2 update causes problems when fastforwarding through streamed videos

    Has any else exprienced problems when trying to fast forward or skip to later sections of a large movie file (>1 gig) that is being streamed from a shared network folder? After the 2.2 update the file often not play after FFwarding but rather continuously tries to 'load' the file - the loading bar usually gets to about 99% but never to 100%. This problem was not existent for me with the 2.1 software.

    After doing a factory re-install of ATV 2.1 software (from 2.2) the streaming worked just fine again with my mac mini and router. There are reasonable seek delays but not like in 2.2 where the delay is indefinite. My iTunes library is being streamed from a USB harddrive attached to my mac mini. My LAN setup is wired so the problems I am experiencing is not due to wifi lag.
    All of my files that I am attempting to stream are large, single chapter videos. I doubt it is a chapter issue, however, as even fast forwarding hangs the video playback after a few seconds of seeking.

  • I have some problems when turning on my iphone5.  The screen turns black and so white and when I start an app it suddenly turn itselves off.  This happens every time when I turn it on.  After I have turned it on several times it acts normal...Anyone??

    I have some problems when turning on my iphone 5.  The screen turns black and then white and the appli is red and when I finally get in and start an app it turnes itselves off.  This happens every time when I turn it on.  After I have turned it on several times it acts normal.... But something is wrong...Anyone???

    Try reset
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data
    If no joy, restore backup using iTunes.
    Finally last attempt, rsetore as new and sync content back manually.

Maybe you are looking for

  • How Long Did it Take to Receive Your Replacement?

    My shuffle is crapped out. I don't have phone support so I have to request service through the website. Apple says they will ship a new one to me...however, my question is: How long will it take to receive it? Does anybody know how quickly things are

  • Error in iMovie about Disk Space after upgrade

    I just upgraded to Mountain Lion. I created a movie in iMovie and when I tried to export it to YouTube, I got an error message about no disk space. I have over 700GB of space so I don't think that's the issue. I tried upgrading iMovie but it's asking

  • Cyrillic Characters not shown in pdf file when xsl is parsed

    Part of the application we have created allows the user to view PDF pages, so they are more suitable for printing. We create xsl files which eventually get transformed into the PDF format. We use the javax.xml.Transform.Transformer to transform the x

  • Minimum coverage value should be greater than zero (host machine)

    Hi, I am working on an host machine (windows 7, LabVIEW RTE 2010, VAS 2010 (evaluate version)) with an application created on another machine (Windows XP, LabVIEW 2010, Vision Development Module 2011). This application is supposed to aquire an image

  • Syncing iTunes with iPod

    I have a 5th Gen. iPod and am using Windows XP. I am having problems syncing my iTunes library with my iPod. A number of songs will transfer and then I get the following message: 'You do not have enough access privileges for this operation' Any sugge