]> git.sesse.net Git - vlc/blob - share/lua/sd/icecast.lua
ad487434bbd0b514fb23eafbed3fd790753274f9
[vlc] / share / lua / sd / icecast.lua
1 --[[
2  $Id$
3
4  Copyright © 2010 VideoLAN and AUTHORS
5
6  Authors: Fabio Ritrovato <sephiroth87 at videolan dot org>
7
8  This program is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  This program is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with this program; if not, write to the Free Software
20  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 --]]
22 require "simplexml"
23
24 function descriptor()
25     return { title="Icecast Directory" }
26 end
27
28 function main()
29     local loading = vlc.sd.add_item( {path="vlc://nop",title="Loading..."} )
30     local tree = simplexml.parse_url("http://dir.xiph.org/yp.xml")
31     for _, station in ipairs( tree.children ) do
32         simplexml.add_name_maps( station )
33         vlc.sd.add_item( {path=station.children_map["listen_url"][1].children[1],
34                           title=station.children_map["server_name"][1].children[1],
35                           genre=station.children_map["genre"][1].children[1],
36                           nowplaying=station.children_map["current_song"][1].children[1],
37                           meta={["Icecast"]={["Bitrate"]=station.children_map["bitrate"][1].children[1];
38                                              ["Server type"]=station.children_map["server_type"][1].children[1]}}} )
39     end
40     vlc.sd.remove_item( loading )
41 end