View Single Post
  #19  
Old 12-22-2015, 12:49 PM
cw2k cw2k is offline
Junior Member
 
Join Date: Dec 2014
Posts: 15
cw2k is on a distinguished road
Default

Re: How to watch/record videos on Hulu from outside the US


https://proxmate.me will help with that!

However you may reduce proxmate to just a single PAC-File (=Proxy Auto-Configuration)
Please see that for post for the full PAC-File and how to use it in windows. (sorry due to the 10 000 chars per post in here, I can't paste it here.)

Okay that's a small version with the mainfocus on hulu.com and some others around:

Code:
function FindProxyForURL(url, host) {
	
	if (	(url.indexOf('urlcheck.hulu.com') != -1) ||  
				(host == 's.hulu.com') ||  
				
				(host == 'www.funimation.com') ||  
				(host == 'wpc.8c48.edgecastcdn.net') ||  
				(host == 'southpark.cc.com') ||  
				(host == 'api.utils.watchabc.go.com') ||  
				(host == 'www.dramafever.com') ||  
				(host == 'www.logotv.com') ||  
				(host == 'media.mtvnservices.com') ||  
				(host == 'api.watchabc.go.com')) {
					
		return 'PROXY ush-node.proxmate.me:8008'

	} else if (	(host == 'counter.yadro.ru') ||  
				(host == 'turbik.tv')) {
		return 'PROXY ru-node.proxmate.me:8008'
	} else {
		return 'DIRECT';
	}
}
Save it to C:\whatever\PAC_script.js and set that here:

^- you can just enter
C:\whatever\PAC_script.js (Tested with win7)
but File://C:/whatever/PAC_script.js might work as well.
Reply With Quote