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

midi

开发平台:

Unix_Linux

  1. --[[ This code is public domain (since it really isn't very interesting) ]]--
  2. msg = [[
  3. This is the `dummy' VLC Lua interface module.
  4. Please specify a VLC Lua interface to load with the --lua-intf option.
  5. VLC Lua interface modules include: `rc', `telnet' and `http'.
  6. For example: vlc -I lua --lua-intf rc
  7. You can also use the alternate syntax: vlc -I "lua{intf=rc}"]]
  8. for line in string.gmatch(msg,"([^n]+)n*") do
  9.     vlc.msg.err(line)
  10. end
  11. vlc.misc.quit()