Last active
July 25, 2024 23:08
-
-
Save adamfisher/253f63bed11953c2f852 to your computer and use it in GitHub Desktop.
Eliminate YouTube buffering delays on Windows by running this command at the Windows command line. It prevents your computer from using CDN servers that rate limit the streaming speed of videos.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Eliminates requests to YouTube's Buffering CDN Locations | |
#Install | |
netsh advfirewall firewall add rule name="YoutubeBufferTrick" dir=in action=block remoteip=173.194.55.0/24,206.111.0.0/16,208.117.251.0/24 enable=yes | |
#Uninstall | |
netsh advfirewall firewall delete rule name="YoutubeBufferTrick" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment