home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
Support
Installation, configuration support
Watch "US bassed only" video (works with MTV video plug)
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="userjan" data-source="post: 354710" data-attributes="member: 69964"><p>A real nice MTV video plugin is made by Dukus, but MTV turned it into a US based video streaming, so it didnt work anymore for people outside the US.</p><p></p><p>I found some solutions for it, but i wanted to have this automated, took me a day or two to figure out, but got it working trough the Tor network now.</p><p></p><p>The proxy is only used for URL's you configure without any user action needed, you can configurate wich sites should be pushed trough the proxy, the rest will be left untouched.</p><p></p><p>Keep in mind, using Tor means youre pushing your data unencrypted trough someones else computer, if that person got wrong intentions it can sniff passwords and private chat out, don't use it to reach your primairy email acount etc, keep your personal data and yourself safe. </p><p>(ones again, the proxy will only be used for the url's you list, so your normal browsing will bypass the proxy)</p><p></p><p><strong>#Install the software</strong></p><p></p><p>Download the "tor bundle" package: <a href="https://www.torproject.org/download.html.en" target="_blank">https://www.torproject.org/download.html.en</a></p><p>(Stable v0.2.0.32 is the one i used)</p><p></p><p>Start installation, on choose components you must select first 3 (Vidalia,Tor,Privoxy)</p><p>Torbutton is a firefox addon, so if you dont use firefox or dont want it to mess with firefox, deselect it</p><p>Finish installation / Run installed components now.</p><p></p><p>The Vidalia screen will show up</p><p>Deselect "show this window on startup" this will keep it hidden in the taskbar next time your system starts.</p><p></p><p>Now "exit" and open Vidalia again, shuting down windows will close Vidalia the hard way, making it loose this setting if you didnt close it the proper way ones.</p><p></p><p>Browse trough the program a bit to get a feel of it, nothing need to be changed here, click "hide" to send it to the taskbar.</p><p></p><p></p><p><strong>#Configuration Internet Explorer</strong></p><p></p><p>We have to set the Internet Explorer to use a proxy (tor), we do this trough a ".pac" file.</p><p></p><p>The nice thing of this is, you can put in the file for wich sites you want to run the proxy (Tor) so it is only pussing data trough the proxy on the sites you need it and leaves your normal browsing untouched.</p><p></p><p>Create a .pac file</p><p>--------------------------------------------------------------------------------------</p><p>Code for MTV videos only (and test site whatismyipaddress.com)</p><p>--------------------------------------------------------------------------------------</p><p>function FindProxyForURL(url, host)</p><p></p><p>{</p><p></p><p>if (shExpMatch(host, "*mtv.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*mtvmusic.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*media.mtvnservices.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*whatismyipaddress.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else </p><p></p><p>return "DIRECT";</p><p></p><p>}</p><p></p><p>--------------------------------------------------------------------------------------</p><p>Code for:</p><p>MTV, Hulu, Sling, Rhapsody, Pluggedin, Pandora, CBS, FOX, ABC, NBC ,Netflix</p><p> (and test site whatismyipaddress.com)</p><p>--------------------------------------------------------------------------------------</p><p>function FindProxyForURL(url, host)</p><p></p><p>{</p><p></p><p>if (shExpMatch(host, "*.pandora.com*")) </p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*mtv.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*mtvmusic.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*hulu.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*sling.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*media.mtvnservices.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*rhapsody.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*pluggedin.com.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*movenetworks.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*abc.go.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*cbs.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*fox.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*nbc.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*netflix.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else if (shExpMatch(host, "*whatismyipaddress.com*"))</p><p></p><p>return "SOCKS 127.0.0.1:9050";</p><p></p><p>else </p><p></p><p>return "DIRECT";</p><p></p><p>}</p><p></p><p>--------------------------------------------------------------------------------------</p><p></p><p>Copy one of these codes into Notepad, and save as "tor.pac" on a easy to find location (make sure you select "all files" otherwise it saves as a .txt still)</p><p></p><p>Next open Internet Explorer and go to Tools/Internet Options/Connections/LAN Settings</p><p></p><p>Only select "Use Automatic Configuration script" and direct it to the location of the tor.pac file you just made ( like: "file://C:\tor.pac") and press ok</p><p></p><p></p><p><strong># Configuration Tor</strong></p><p></p><p>We have to tell Tor to end the connection with a US based peer.</p><p>--------------------------------------------------------------------------------------</p><p>Code for Tor, end with US based peer.</p><p>--------------------------------------------------------------------------------------</p><p>StrictExitNodes 1</p><p>ExitNodes desync,whistlersmother,lefkada,bettyboop,croeso,TorLuwakOrg,nixnix,inap1,redpineapple,cronic</p><p></p><p>--------------------------------------------------------------------------------------</p><p></p><p>Go to START/All Programs/Vidalia Bundle/Tor/Torrc</p><p></p><p>Copy the above code underneath the code in the Torrc file and pres save.</p><p></p><p>The exitnodes listed in the code are hubs in the Tor network, this can change over time, you can always add/remove hubs by editing the Torrc file.</p><p>When you open Vidalia and select "View the Network" you can see a list of the hubs by country.</p><p></p><p></p><p><strong>REBOOT WINDOWS</strong></p><p></p><p></p><p><strong>#See if it runs</strong></p><p></p><p>I've added the site "whatismyipaddress.com" to use the proxy</p><p>Go to google and search for "myip" you will get various sites that will tell you your ip, if everything works as it should, all sites should show your original IP exept for whatismyipaddress.com, that should show a US based IP.</p><p></p><p>If it doesnt work, you might have to delete your cookies or block those site from adding cookies, also disable the firewall for a moment to see if thats cousing the problem.</p><p></p><p>If you start using Tor at a regulair basis consider to share some bandwich and create a hub, the more hubs the Tor network gets the faster it can run.</p><p></p><p>Next i would like to find a way to select "exitnodes" by url, so this could also make the bbc player available outside the Uk etc etc.... if somebody finds something on that please follow up on that....</p><p></p><p>Greetz Jan</p></blockquote><p></p>
[QUOTE="userjan, post: 354710, member: 69964"] A real nice MTV video plugin is made by Dukus, but MTV turned it into a US based video streaming, so it didnt work anymore for people outside the US. I found some solutions for it, but i wanted to have this automated, took me a day or two to figure out, but got it working trough the Tor network now. The proxy is only used for URL's you configure without any user action needed, you can configurate wich sites should be pushed trough the proxy, the rest will be left untouched. Keep in mind, using Tor means youre pushing your data unencrypted trough someones else computer, if that person got wrong intentions it can sniff passwords and private chat out, don't use it to reach your primairy email acount etc, keep your personal data and yourself safe. (ones again, the proxy will only be used for the url's you list, so your normal browsing will bypass the proxy) [B]#Install the software[/B] Download the "tor bundle" package: [url]https://www.torproject.org/download.html.en[/url] (Stable v0.2.0.32 is the one i used) Start installation, on choose components you must select first 3 (Vidalia,Tor,Privoxy) Torbutton is a firefox addon, so if you dont use firefox or dont want it to mess with firefox, deselect it Finish installation / Run installed components now. The Vidalia screen will show up Deselect "show this window on startup" this will keep it hidden in the taskbar next time your system starts. Now "exit" and open Vidalia again, shuting down windows will close Vidalia the hard way, making it loose this setting if you didnt close it the proper way ones. Browse trough the program a bit to get a feel of it, nothing need to be changed here, click "hide" to send it to the taskbar. [B]#Configuration Internet Explorer[/B] We have to set the Internet Explorer to use a proxy (tor), we do this trough a ".pac" file. The nice thing of this is, you can put in the file for wich sites you want to run the proxy (Tor) so it is only pussing data trough the proxy on the sites you need it and leaves your normal browsing untouched. Create a .pac file -------------------------------------------------------------------------------------- Code for MTV videos only (and test site whatismyipaddress.com) -------------------------------------------------------------------------------------- function FindProxyForURL(url, host) { if (shExpMatch(host, "*mtv.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*mtvmusic.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*media.mtvnservices.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*whatismyipaddress.com*")) return "SOCKS 127.0.0.1:9050"; else return "DIRECT"; } -------------------------------------------------------------------------------------- Code for: MTV, Hulu, Sling, Rhapsody, Pluggedin, Pandora, CBS, FOX, ABC, NBC ,Netflix (and test site whatismyipaddress.com) -------------------------------------------------------------------------------------- function FindProxyForURL(url, host) { if (shExpMatch(host, "*.pandora.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*mtv.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*mtvmusic.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*hulu.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*sling.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*media.mtvnservices.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*rhapsody.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*pluggedin.com.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*movenetworks.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*abc.go.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*cbs.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*fox.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*nbc.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*netflix.com*")) return "SOCKS 127.0.0.1:9050"; else if (shExpMatch(host, "*whatismyipaddress.com*")) return "SOCKS 127.0.0.1:9050"; else return "DIRECT"; } -------------------------------------------------------------------------------------- Copy one of these codes into Notepad, and save as "tor.pac" on a easy to find location (make sure you select "all files" otherwise it saves as a .txt still) Next open Internet Explorer and go to Tools/Internet Options/Connections/LAN Settings Only select "Use Automatic Configuration script" and direct it to the location of the tor.pac file you just made ( like: "file://C:\tor.pac") and press ok [B]# Configuration Tor[/B] We have to tell Tor to end the connection with a US based peer. -------------------------------------------------------------------------------------- Code for Tor, end with US based peer. -------------------------------------------------------------------------------------- StrictExitNodes 1 ExitNodes desync,whistlersmother,lefkada,bettyboop,croeso,TorLuwakOrg,nixnix,inap1,redpineapple,cronic -------------------------------------------------------------------------------------- Go to START/All Programs/Vidalia Bundle/Tor/Torrc Copy the above code underneath the code in the Torrc file and pres save. The exitnodes listed in the code are hubs in the Tor network, this can change over time, you can always add/remove hubs by editing the Torrc file. When you open Vidalia and select "View the Network" you can see a list of the hubs by country. [B]REBOOT WINDOWS[/B] [B]#See if it runs[/B] I've added the site "whatismyipaddress.com" to use the proxy Go to google and search for "myip" you will get various sites that will tell you your ip, if everything works as it should, all sites should show your original IP exept for whatismyipaddress.com, that should show a US based IP. If it doesnt work, you might have to delete your cookies or block those site from adding cookies, also disable the firewall for a moment to see if thats cousing the problem. If you start using Tor at a regulair basis consider to share some bandwich and create a hub, the more hubs the Tor network gets the faster it can run. Next i would like to find a way to select "exitnodes" by url, so this could also make the bbc player available outside the Uk etc etc.... if somebody finds something on that please follow up on that.... Greetz Jan [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Support
Installation, configuration support
Watch "US bassed only" video (works with MTV video plug)
Contact us
RSS
Top
Bottom