Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
460ea1d9
Commit
460ea1d9
authored
Feb 22, 2010
by
Fabio Ritrovato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lua SD: Icecast Directory script
parent
db21ff87
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
1 deletion
+42
-1
share/Makefile.am
share/Makefile.am
+3
-1
share/lua/sd/icecast.lua
share/lua/sd/icecast.lua
+39
-0
No files found.
share/Makefile.am
View file @
460ea1d9
...
@@ -225,6 +225,7 @@ nobase_vlclib_DATA = \
...
@@ -225,6 +225,7 @@ nobase_vlclib_DATA = \
lua/sd/fmc.luac
\
lua/sd/fmc.luac
\
lua/sd/freebox.luac
\
lua/sd/freebox.luac
\
lua/sd/frenchtv.luac
\
lua/sd/frenchtv.luac
\
lua/sd/icecast.luac
\
$(NULL)
$(NULL)
if
BUILD_HTTPD
if
BUILD_HTTPD
nobase_vlclib_DATA
+=
\
nobase_vlclib_DATA
+=
\
...
@@ -275,7 +276,8 @@ EXTRA_DIST += \
...
@@ -275,7 +276,8 @@ EXTRA_DIST += \
lua/sd/README.txt
\
lua/sd/README.txt
\
lua/sd/fmc.lua
\
lua/sd/fmc.lua
\
lua/sd/freebox.lua
\
lua/sd/freebox.lua
\
lua/sd/frenchtv.lua
lua/sd/frenchtv.lua
\
lua/sd/icecast.lua
DIST_http_lua
=
\
DIST_http_lua
=
\
lua/http/.hosts
\
lua/http/.hosts
\
...
...
share/lua/sd/icecast.lua
0 → 100644
View file @
460ea1d9
--[[
$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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment