README.txt
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:1k
源码类别:

midi

开发平台:

Unix_Linux

  1. Instructions to code your own VLC Lua interface script.
  2. $Id$
  3. See lua/README.txt for generic documentation about Lua usage in VLC.
  4. Examples: rc.lua, telnet.lua and http.lua
  5. The "config" global variable is set to the value specified in the
  6. --lua-config VLC option. For example:
  7. --lua-config "rc={a='test',c=3},telnet={a='hello'}"
  8. config will be set to {a='test',c=3} in the rc interface, to {a='hello'}
  9. in the telnet interface and won't be set in other interfaces. 
  10. User defined modules stored in the share/lua/intf/modules/ directory are
  11. available. For example, to use the sandbox module, just use
  12. 'require "sandbox"' in your interface.
  13. VLC defines a global vlc object with the following members:
  14. All the VLC specific Lua modules are available.