]> git.sesse.net Git - vlc/commitdiff
Lua SD: Icecast Directory script
authorFabio Ritrovato <sephiroth87@videolan.org>
Mon, 22 Feb 2010 19:39:11 +0000 (20:39 +0100)
committerFabio Ritrovato <sephiroth87@videolan.org>
Mon, 22 Feb 2010 19:39:11 +0000 (20:39 +0100)
share/Makefile.am
share/lua/sd/icecast.lua [new file with mode: 0644]

index 73cdfdb0cd0341d37930c8aa2db102a5645c76de..4b925917aded8ab7e2fce29df1e18a4e850a3b5e 100644 (file)
@@ -225,6 +225,7 @@ nobase_vlclib_DATA = \
        lua/sd/fmc.luac \
        lua/sd/freebox.luac \
        lua/sd/frenchtv.luac \
+       lua/sd/icecast.luac \
        $(NULL)
 if BUILD_HTTPD
 nobase_vlclib_DATA += \
@@ -275,7 +276,8 @@ EXTRA_DIST += \
        lua/sd/README.txt \
        lua/sd/fmc.lua \
        lua/sd/freebox.lua \
-       lua/sd/frenchtv.lua
+       lua/sd/frenchtv.lua \
+       lua/sd/icecast.lua
 
 DIST_http_lua = \
        lua/http/.hosts \
diff --git a/share/lua/sd/icecast.lua b/share/lua/sd/icecast.lua
new file mode 100644 (file)
index 0000000..03c092b
--- /dev/null
@@ -0,0 +1,39 @@
+--[[
+ $Id$
+
+ Copyright © 2010 VideoLAN and AUTHORS
+ Authors: Fabio Ritrovato <sephiroth87 at videolan dot org>
+
+ 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.
+--]]
+require "simplexml"
+
+function descriptor()
+    return { title="Icecast Directory" }
+end
+
+function main()
+    local tree = simplexml.parse_url("http://dir.xiph.org/yp.xml")
+    for _, station in ipairs( tree.children ) do
+        simplexml.add_name_maps( station )
+        vlc.sd.add_item( {path=station.children_map["listen_url"][1].children[1],
+                          title=station.children_map["server_name"][1].children[1],
+                          genre=station.children_map["genre"][1].children[1],
+                          nowplaying=station.children_map["current_song"][1].children[1],
+                          meta={["Icecast"]={["Bitrate"]=station.children_map["bitrate"][1].children[1];
+                                             ["Server type"]=station.children_map["server_type"][1].children[1]}}} )
+    end
+end