Watching Italian public television from abroad
5 Comments Published November 27th, 2008 in Life, universe and everything, Lifehacks Tags: .I've never been a great TV watcher when I was in Italy. Here in Germany I don't watch TV also because I don't understand German. But sometime I miss some Italian news shows, like Anno Zero.
The public URLs are the followings:
RAI 1 mms://212.162.68.163/prodtvr1 RAI 2 mms://212.162.68.163/prodtvr2 RAI 3 mms://212.162.68.163/prodtvr3 RaiSport+ mms://212.162.68.163/raisport+
Unfortunately the Italian public television is not accessible from abroad: probably they check the IP address. So, to watch those channel you need to use a computer located in Italy.
But... if you have a Unix server hosted in Italy, port forwarding can do the trick:
$ sudo ssh username@yourserver.com -L 80:212.162.68.163:80 -Nv $ vlc "mms://127.0.0.1/prodtvr1" $ vlc "mms://127.0.0.1/prodtvr2" $ vlc "mms://127.0.0.1/prodtvr3" $ vlc "mms://127.0.0.1/raisport+"
The first command will ask for the password on your local computer, then the password to the destination server. The sudo is needed because you need to bind local port 80 to connect to destination address. And you can't bind port < 1024 without root privileges. The second command will launch vlc to watch RAI2.
Also, a nice thing to know if you have a running Unix and OpenSSH server, is that you can easily setup a Socks proxy to access the internet from that server.
ssh -C -D 1080 user@yourserver.com -Nv
This makes your local port 1080 to act as a Socks proxy server. On Firefox you can set it as socks proxy on localhost:1080
The option -N opens a non interactive shell, while the -v is used to display debugging messages on the console. You can remove the -v and add a & at the end of those commands to run them on background, as a daemon service.
The problem is that I have to consume precious bandwidth on my servers... so, if anybody knows a way to access Italian TV from abroad without needing to proxy like I am doing, please leave a comment. I already tried CoolStreaming and Yalp, but they don't work from abroad.
Links to read:
SSH Howto, on Ubuntu Community Documentation
Italian howto on a university wiki
Search
Calendar
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Oct | Dec » | |||||
| 1 | 2 | |||||
| 3 | 4 | 5 | 6 | 7 | 8 | 9 |
| 10 | 11 | 12 | 13 | 14 | 15 | 16 |
| 17 | 18 | 19 | 20 | 21 | 22 | 23 |
| 24 | 25 | 26 | 27 | 28 | 29 | 30 |
Archives
Categories
- Android (3)
- Apple (26)
- Books (7)
- Eclipse (14)
- Errors (3)
- Firefox (7)
- Git (2)
- Hardware (16)
- Horror Code (8)
- Internet (18)
- Java (98)
- JavaScript (9)
- Life, universe and everything (45)
- Lifehacks (25)
- Linux (50)
- Opinions (25)
- OSX (4)
- Python (1)
- Software (27)
- Speeches and Conferences (8)
- Unix (3)
- Web (21)
- Windows (19)
Tag Cloud
Android apple architecture Bash colors configuration CSS Development Düsseldorf Eclipse germany Git Google Hardware hdr How-To Java JAXB job junit Karmic Linux MacBook music night Open Source Opinion oracle OSX patterns Pitfalls Practices Resume Security Software Suspend TDD Testing tip tonemapped Tricks Ubuntu video Web XML
WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.
Blog License
Blogs I like
Books on the desk
Friends' Blogs
- Antonio Terreno & Valter Bernardini
- Bruno Bossola
- Daniele Galluccio
- Domenico Ventura
- Ed Schepis
- Fabrizio Gianneschi
- Luca Grulla
- Luigi Zanderighi
- Marcello Teodori
- Mida Boghetich
- Muralidharan Chandrasekaran
- Piero Ricca
- Renzo Borgatti
- Simone Bordet
- Simone Bruno
- Uberto Barbini
- Valvolog
- Webtide blogs (Greg Wilkins & Jan Bartel)
Links




















Tnx Luigi! :-)
Update: since new rai.tv site has gone live, this is nomore working. I am looking forward to find out how to fix it.
Did you find something? I also would like to see Annozero this evening.
Hi
You solution works but it no the easiest.
I used Expat Shield. It allows you to Watch UK TV online outside of UK.
Did anyone find anything similar for watching ITA TV online outside of ITA?
Thanks
Emiliano
Ciao Emiliano
L’articolo l’ho scritto qualche tempo fa. Con quello stratagemma potevo vedere rai1 rai2 e rai3, e qualche altro canale.
Al momento non sono a conoscenza di sistemi leciti o illeciti che siano per vedere la tv italiana dall’estero.
C’era un bel sito ( http://www.vcast.it/faucetpvr/ ) che permetteva di registrare alcuni programmi e poterli scaricare, non so se funziona ancora.
Luigi.