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

midi

开发平台:

Unix_Linux

  1. Instructions to code your own VLC Lua playlist script.
  2. $Id$
  3. See lua/README.txt for generic documentation about Lua usage in VLC.
  4. Examples: See dailymotion.lua, googlevideo.lua, metacafe.lua, youbtube.lua
  5.           and youtube_homepage.lua .
  6. VLC Lua playlist modules should define two functions:
  7.  * probe(): returns true if we want to handle the playlist in this script
  8.  * parse(): read the incoming data and return playlist item(s)
  9.             Playlist items use the same format as that expected in the
  10.             playlist.add() function (see general lua/README.txt)
  11. VLC defines a global vlc object with the following members:
  12.  * vlc.path: the URL string (without the leading http:// or file:// element)
  13.  * vlc.access: the access used ("http" for http://, "file" for file://, etc.)
  14.  * vlc.peek( <int> ): return the first <int> characters from the playlist file.
  15.  * vlc.read( <int> ): read <int> characters from the playlist file.
  16.                       THIS FUNCTION CANNOT BE USED IN probe().
  17.  * vlc.readline(): return a new line of playlist data on each call.
  18.                    THIS FUNCTION CANNOT BE USED IN probe().
  19. Available VLC specific Lua modules: msg and strings. See lua/README.txt.