文件最后提交记录最后更新时间
Allow configuring mobile controller UI skip duration (fixes #26704) (cherry picked from commit e8b42d40867347ca5298351e28c3e69387dcf4ee) 2 年前
share: lua: remove $Id$ magic comments These were used by SVN, we are no longer using that though. (cherry picked from commit 6995265a57b450c614033dd38b5f022e5886be6d) Signed-off-by: Marvin Scholz <epirat07@gmail.com> 3 年前
lua: host: do not use deprecated module function (cherry picked from commit 4109a34d6449b3a07c41c9fb269e2b18de769840) Signed-off-by: Marvin Scholz <epirat07@gmail.com> 3 年前
lua: don't document rc and telnet, they're gone 14 年前
share: lua: remove $Id$ magic comments These were used by SVN, we are no longer using that though. (cherry picked from commit 6995265a57b450c614033dd38b5f022e5886be6d) Signed-off-by: Marvin Scholz <epirat07@gmail.com> 3 年前
lua: common: do not use deprecated module function (cherry picked from commit bfc88aa7a1ac64761f1078785116fd25ab4574be) Signed-off-by: Marvin Scholz <epirat07@gmail.com> 3 年前
lua: intf: luac: fix usage instructions (cherry picked from commit 7c5203ab1a9ff788eb25c3c6da2bfb8e13819a0b) Signed-off-by: Marvin Scholz <epirat07@gmail.com> 3 年前
share: lua: remove $Id$ magic comments These were used by SVN, we are no longer using that though. (cherry picked from commit 6995265a57b450c614033dd38b5f022e5886be6d) Signed-off-by: Marvin Scholz <epirat07@gmail.com> 3 年前
lua: use vlc.strings.url_parse() 9 年前
README.txt

Instructions to code your own VLC Lua interface script.

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.