vlc/share/lua/sd
Rémi Duraffort bdea03db32 lua_sd_channels: implement the search function. 2010-10-25 23:34:36 +02:00
..
README.txt Lua SD: don't open the playlist lib 2010-03-11 15:57:28 +01:00
appletrailers.lua lua: improve the apple trailer sd: 2010-08-20 20:46:26 +02:00
fmc.lua Revert "Lua SD: let the user know we are working" 2010-03-05 11:06:26 +01:00
freebox.lua Revert "Lua SD: let the user know we are working" 2010-03-05 11:06:26 +01:00
frenchtv.lua Fix white lines 2010-02-27 14:59:03 +01:00
icecast.lua Revert "Lua SD: let the user know we are working" 2010-03-05 11:06:26 +01:00
jamendo.lua jamendo: also get the artist along with the list of songs for one album. 2010-08-17 21:38:07 +02:00
katsomo.lua add sd for katsomo.fi 2010-06-22 22:41:38 +03:00
librivox.lua librivox: some cleanup and add the book author as artist of the item. 2010-09-09 19:26:20 +02:00
magnatune.lua lua_sd: add an sd for magnatune (proof of concept for the moment). 2010-08-31 23:15:40 +02:00
metachannels.lua lua_sd_channels: implement the search function. 2010-10-25 23:34:36 +02:00

README.txt

Instructions to code your own VLC Lua services discovery script.
$Id$

See lua/README.txt for generic documentation about Lua usage in VLC.

Examples: See fmc.lua, freebox.lua, frenchtv.lua

VLC Lua SD modules should define two functions:
 * descriptor(): returns a table with information about the module.
                 The table has the following members:
                     .title: the name of the SD
 * main(): will be called when the SD is started

User defined modules stored in the share/lua/modules/ directory are
available. For example, to use the sandbox module, just use
'require "sandbox"' in your interface.

Available VLC specific Lua modules: input, msg, misc, net, object, sd,
strings, variables, stream, gettext, xml. See lua/README.txt.