[vlc-devel] commit: Lua SD: Icecast Directory script (Fabio Ritrovato )

git version control git at videolan.org
Mon Feb 22 20:39:04 CET 2010


vlc | branch: master | Fabio Ritrovato <sephiroth87 at videolan.org> | Mon Feb 22 20:39:11 2010 +0100| [460ea1d9c820ce65f0f593d3f57b900a038a5ad0] | committer: Fabio Ritrovato 

Lua SD: Icecast Directory script

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=460ea1d9c820ce65f0f593d3f57b900a038a5ad0
---

 share/Makefile.am        |    4 +++-
 share/lua/sd/icecast.lua |   39 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+), 1 deletions(-)

diff --git a/share/Makefile.am b/share/Makefile.am
index 73cdfdb..4b92591 100644
--- a/share/Makefile.am
+++ b/share/Makefile.am
@@ -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
index 0000000..03c092b
--- /dev/null
+++ b/share/lua/sd/icecast.lua
@@ -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




More information about the vlc-devel mailing list