You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Lyndon Brown e1194a5f29 Switch various user facing URLs to HTTPS 4 years ago
..
modules Revert "lua/http: add pl_sd_(add|remove) HTTP requests" 5 years ago
README.txt lua: update interface script examples in README.txt 10 years ago
cli.lua lua: add the late frames statistics 6 years ago
dummy.lua lua: don't document rc and telnet, they're gone 15 years ago
dumpmeta.lua lua: scripts: use new playlist/player lua API 7 years ago
http.lua Switch various user facing URLs to HTTPS 4 years ago
luac.lua lua: document the use of -I luaintf instead of -I lua 15 years ago
telnet.lua cli: add a command to load the VLM 15 years ago
test.lua lua: use vlc.strings.url_parse() 10 years ago

README.txt

Instructions to code your own VLC Lua interface script.
$Id$

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

Examples: cli.lua, http.lua

The "config" global variable is set to the value specified in the
--lua-config VLC option. For example:
--lua-config "rc={a='test',c=3},telnet={a='hello'}"
config will be set to {a='test',c=3} in the rc interface, to {a='hello'}
in the telnet interface and won't be set in other interfaces.

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

VLC defines a global vlc object with the following members:
All the VLC specific Lua modules are available.