Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/06/2016 in Posts

  1. I wanted to share this in case it can help someone in the future. For the past few weeks we've noticed a lot of digital artifacts and audio cutting out on some channels. I was thinking that it may be an issue with Comcast, they just fixed a major issue in my area so I hadn't made a big deal about it yet. I was about to call about it and today I noticed something that I'd never seen before. Downloading something... affecting the picture on the TV. Over and over I slowed down and sped up the transfer speed on an intensive usenet download. When I'd ramp it up to full speed the picture started to block out heavily, I'd then slow the speed way down and immediately the picture returned to normal. When it was pixelated it was so bad that the show became completely unwatchable. My actions on the Internet were 100% without a doubt affecting the TV picture. After witnessing this I grabbed a fresh 2 way splitter out of my tool bag, ran down to the basement and swapped out the splitter. Ever since... perfect picture. Not even a single instance where before you couldn't make it 60 seconds without something. By the way, there was no issue with the Internet speed in this case. Just looking at the Internet performance I would have thought everything was fine. Cracked open the splitter and there's definite signs of degradation. Hot spot on a solder point leading to that wrapped coil shows signs of internal resistance. This was a brand new splitter used in untouched conditions indoors for only 1.5 years before it failed this way. A wide array of symptoms can be caused by the same thing. Remember, any points where two or more cables meet are always weak points. When you're having issues, always look in these areas first. The fix may be easier than you can imagine.
    2 points
  2. The best place to test for packet loss is on your computer. Most websites that test for packet loss run the test on their server, which is basically to test the host end for packet loss rather than your connection. Like speedtest.net, I never had much luck with pingtest.net either as I've run tests on a line that was giving a fairly consistent 7% packet loss and pingetest.net either failed to load or reported 0% packet loss. I wrote the following script which measures packet loss against Google's DNS server. Copy & paste the code into Notepad and save it as "pingtest.bat" on your desktop. To run the script, just double-click the pingtest icon. @echo off set /a PingCount=0 set /a PacketsLost=0 set tensec=%time:~6,1% :pingrepeat ping -n 1 8.8.8.8 >null &&goto pingreply set /a PacketsLost+=1 :pingreply set /a PingCount+=1 set /a Complete=PingCount/10 if not "%time:~6,1%"=="%tensec%" ( echo Test %Complete%^%% complete... set tensec=%time:~6,1% ) if not "%PingCount%"=="1000" goto :pingrepeat set /a PacketLoss=PacketsLost/10 echo Packet loss: %PacketLoss%.%PacketsLost:~-1,1%^%% echo. pause The script can take a few minutes to complete and shows a progress percentage roughly every 10 seconds. While it's also possible to run this test by typing "ping -n 1000 8.8.8.8" at the command line, normally the ping command waits 1 second per ping, which would take 15 to 20 minutes to complete.
    1 point
×
×
  • Create New...