--SD_Description=Italian TV --[[ Copyright © 2010 AUTHORS Authors: ale5000 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. --]] function descriptor() return { title = "Italian TV"; version = "0.02"; author = "ale5000"; } end function main() local loading = vlc.sd.add_item( {path="vlc://nop",title="Loading...",textcolor="blue"} ) -- textcolor isn't not yet supported :-D local node ---- http://wwitv.com/ ---- ---- http://wwitv.com/portal.htm?http://wwitv.com/television/104.htm ---- node = vlc.sd.add_node( {title="Mediaset",arturl="http://t1.gstatic.com/images?q=tbn:9RtlxW__mQJnIM:http://www.geekblog.it/wp-content/uploads/2010/01/Mediaset-in-Streaming-per-guardare-su-Internet-Italia1-Canale-5-Rete-4.jpg"} ) node:add_subitem( {title="Canale 5",path="http://live.wm.p1.str3.com/003000_bc_v365_mediashopping_mi"} ) -- http://wwitv.com/tv_stream/b5521.asx vlc.sd.add_item( {title="Canale 7",path="mms://www.superstreaming.it/canale7"} ) -- http://wwitv.com/tv_stream/b4103.asx vlc.sd.add_item( {title="Canale 9",path="http://live5.streamingmedia.it/z7g8n5m2/wls/191083-Canale9_temp.asx"} ) -- ToDO: Fix it vlc.sd.add_item( {title="Canale 10",path="http://82.193.29.18:6869"} ) -- http://wwitv.com/tv_stream/b3858.asx -- ToDO: Test it vlc.sd.add_item( {title="Canale 66",path="mms://79.39.33.28:8080/"} ) -- http://wwitv.com/tv_stream/b2044.asx vlc.sd.add_item( {title="LA9",path="mms://iptv.telecard.it/LA9SAT_HQ"} ) -- http://wwitv.com/tv_stream/b2047.asx -- ToDO: Fix it vlc.sd.add_item( {title="Coming soon TV",path="http://www.comingsoon.it/swf/LiveTV.swf"} ) node = vlc.sd.add_node( {title="RTL 102.5"} ) node:add_subitem( {title="Radiovisione",path="mms://151.1.245.36/rtl102.5vs/"} ) node = vlc.sd.add_node( {title="Repubblica"} ) node:add_subitem( {title="Repubblica Radio TV",path="mms://live.mediaserver.kataweb.it/repubblicaradiotv?MSWMExt=.asf"} ) node:add_subitem( {title="Repubblica TG",path="mms://mediaserver.kataweb.it/tgrep/tg18.wmv?MSWMExt=.asf"} ) vlc.sd.add_item( {title="Italia News",path="http://link.rai.it/x/vod/ri/italianews/wmx/italianews.asx",description="Recorded news. Rai International."} ) node = vlc.sd.add_node( {title="Telespazio TV",arturl="http://img171.imageshack.us/img171/5954/telespaziotv.png"} ) node:add_subitem( {title="Telespazio TV",path="rtsp://64.202.98.20/telespazio/TelespazioTVLIVE",arturl="http://img171.imageshack.us/img171/5954/telespaziotv.png"} ) node:add_subitem( {title="Studio 3",path="rtsp://64.202.98.20/telespazio/Studio3LIVE"} ) --node = vlc.sd.add_node( {title="Deejay TV"} ) --node:add_subitem( {title="Deejay TV",path="mms://live.wms.kataweb.it/deejaytv?Ticket=323030382D31302D32322031353A31393A3138&MSWMExt=.asf"} ) --node = vlc.sd.add_node( {title="All Music"} ) --node:add_subitem( {title="All Music",path="mms://live.mediaserver.kataweb.it/retea?MSWMExt=.asf"} ) --node = vlc.sd.add_node( {title="Radio Italia TV"} ) --node:add_subitem( {title="Radio Italia TV",path="mms://radioitalialive.str.idc.extra.it/radioitaliatv?MSWMExt=.asf"} ) --[[node = vlc.sd.add_node( {title="Telerama"} ) node:add_subitem( {title="Repubblica TG",path="mms://212.48.126.114/telerama"} ) node = vlc.sd.add_node( {title="Ibiza On"} ) node:add_subitem( {title="Repubblica TG",path="mms://66.71.191.54/wmp01-mr8"} ) node = vlc.sd.add_node( {title="Carpe Diem"} ) node:add_subitem( {title="Repubblica TG",path="http://wwitv.com/a1/b4418.asx"} ) node = vlc.sd.add_node( {title="CBL Film"} ) node:add_subitem( {title="Repubblica TG",path="http://wwitv.com/a1/b4070.asx"} )]] ---- vlc.sd.add_item => title= , path= , arturl= , artist= , description= , duration= , options= vlc.sd.remove_item( loading ) end