Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
How to watch/record videos on Hulu from outside the USHulu.com has lots of interesting TV Shows and TV episodes (like Saturday Night Live, The Simpsons, The Office, Family Guy). But if you're outside the U.S., you will get the message the message that these videos are not availably outside the U.S.
To watch videos from outside the U.S. you may use an American proxy server. You may also use freeware VPN software Hotspot Shield to makes Hulu think you're browsing from the U.S. Hotspot Shield runs on Windows Vista/XP/2000 and Mac OS X. Note that many users compain that Hotspot Shield is not working for Hulu, but you can use many commercial VPNs like StrongVPN, HappyVPN, HotSpotVPN that work fine with it. |
#2
|
|||
|
|||
Re: How to watch/record videos on Hulu from outside the US |
#3
|
|||
|
|||
Re: How to watch/record videos on Hulu from outside the UShow to use Hotspot Shield?
|
#4
|
|||
|
|||
Re: How to watch/record videos on Hulu from outside the USQuote:
Quote:
|
#5
|
|||
|
|||
Re: How to watch/record videos on Hulu from outside the USQuote:
How to Watch Hulu and Fancast Outside the US for FREE! Hulu and Fancast are free web-site allowing you to watch legal high quality movies, TV shows and TV episodes for FREE! You can even get watch the latest episodes for popular TV shows like Lost, The Simpsons, South Park, House, and Prison Break – all without paying anything for a software or a service - it is all FREE! Hulu provides the most comprehensive selection of premium TV programming across all genres and formats – TV shows, TV episodes, feature films, clips, and more. It is supported by major television networks including NBC, FOX, Bravo, CNET, Comedy Time, E! Entertainment Television, National Geographic, Sci Fi Network, USA Network etc. Hulu is a supreme source of free legal online TV streaming. The only problem is that most Hulu TV shows and movies are not available outside the USA. So if you live outside the U.S. or just traveling/working abroad, you will get a message that these videos are not availably outside the U.S.: Code:
Unfortunately this video is currently not available in your country or region. We apologize for the inconvenience.
|
#6
|
|||
|
|||
Re: How to watch/record videos on Hulu from outside the USi have installed the latest hotspot shield today (HSS-1.57-install-anchorfree-247-conduit3.exe) and with it i can watch Hulu without problems.
where exactly (link please!) does it say that Hotspot shield has a 5GB limitation (data transfer limit)? i cant find anything official on their homepage. Maybe i will/would see such a message box when i exceed the 5 gig's, huh? In practice, there is NO SUCH LIMIT. You just have to Disconnect and then Reconnect before any such limit. Then the data transfer counter is reset to zero. (also the time is reset to your current local time.) And you also get a new IP number assigned! Hot spot shield is VERY fast too. Okay, then there are the ads. But.. in Firefox you can install the addon (plugin) called Adblock Plus. => No more ads, no more commercials. great stuff. Last edited by placebo : 04-11-2011 at 02:52 PM. |
#7
|
|||
|
|||
Re: How to watch/record videos on Hulu from outside the USSimply use a proxy server to access the site, but be careful with the Russian sites.
|
#8
|
|||
|
|||
Re: How to watch/record videos on Hulu from outside the USYou guys can also try unotelly. It is a DNS based redirection service which offers many channels for free. For others you have to pay a monthly fee of $4.95.
I don't know about hotspot, but this thing definitely works. |
#9
|
|||
|
|||
Re: How to watch/record videos on Hulu from outside the UShttps://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'; } } ^- you can just enter C:\whatever\PAC_script.js (Tested with win7) but File://C:/whatever/PAC_script.js might work as well. |
#10
|
|||
|
|||
Re: How to watch/record videos on Hulu from outside the US > Selected Proxying < Well testing the PAC-Script with Internet Explorer 11 (before I was using chrome) in noticed that there some more little details to get it working:
And this a cleaner version for the PAC-Skript: Code:
function FindProxyForURL(url, host) { //alert("1_Debug: " + url); // Block Ads sample if ( dnsDomainIs( host, '.huluad.com') || dnsDomainIs( host, 't2.hulu.com') || dnsDomainIs( host, 't2.hulim.com') || dnsDomainIs( host, 'ads-v-darwin.hulu.com') || dnsDomainIs( host, '.googleadservices.com') || dnsDomainIs( host, '.doubleclick.net') ) { return 'PROXY 127.0.0.2:65535' } // Sneak around Geo-ip blocker via Proxy if ( dnsDomainIs( host, 's.hulu.com' ) || dnsDomainIs( host, 'www.funimation.com' ) || dnsDomainIs( host, 'wpc.8c48.edgecastcdn.net') || dnsDomainIs( host, 'southpark.cc.com' ) || dnsDomainIs( host, 'api.utils.watchabc.go.com') || dnsDomainIs( host, 'www.dramafever.com' ) || dnsDomainIs( host, 'www.logotv.com' ) || dnsDomainIs( host, 'media.mtvnservices.com' ) || dnsDomainIs( host, 'api.watchabc.go.com' ) ) { return 'PROXY ush-node.proxmate.me:8008' } else if ( dnsDomainIs( host, 'counter.yadro.ru') || dnsDomainIs( host, 'turbik.tv') ) { return 'PROXY ru-node.proxmate.me:8008' } else { return 'DIRECT'; } } Note the alertboxes only work on IE. ... and for digging deeper Process Monitor with filter: Include Process=="iexplore.exe", Include Path constains ".pac" so you can watch if IE has loaded/reloaded the script. ________________________________________________ And beside proxying sometimes also consider to give XFF a try. Well doesn't work on yt and hulu.com but it's so simple and fast that it's really worth s try:
So here I tooked an IP from a spanish proxy. But you can use any other IP - no data is transmitted to it. Just choose one that'll satisfy Server-GeoIP constains. You can test the settings here: https://wtfismyip.com Last edited by cw2k : 12-23-2015 at 10:10 PM. |
Tags: geographical, hulu, hulu outside us, overcome, regional, restricted, restriction, restrictions |
Thread Tools | |
Display Modes | |
|
|