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

midi

开发平台:

Unix_Linux

  1. Instructions to code your own VLC Lua scripts.
  2. $Id$
  3. 1 - About Lua
  4. =============
  5. Lua documenation is available on http://www.lua.org . The reference manual
  6. is very usefull: http://www.lua.org/manual/5.1/ .
  7. VLC uses Lua 5.1
  8. All the Lua standard libraries are available.
  9. 2 - Lua in VLC
  10. ==============
  11. 3 types of VLC Lua scripts can currently be coded:
  12.  * Playlist (see playlist/README.txt)
  13.  * Art fetcher (see meta/README.txt)
  14.  * Interface (see intf/README.txt)
  15. Lua scripts are tried in alphabetical order in the user's VLC config
  16. directory lua/{playlist,meta,intf}/ subdirectory on Windows and Mac OS X or
  17. in the user's local share directory (~/.local/share/vlc/lua/... on linux),
  18. then in the global VLC lua/{playlist,meta,intf}/ directory.
  19. 3 - VLC specific Lua modules
  20. ============================
  21. All VLC specifc modules are in the "vlc" object. For example, if you want
  22. to use the "info" function of the "msg" VLC specific Lua module:
  23. vlc.msg.info( "This is an info message and will be displayed in the console" )
  24. Note: availability of the different VLC specific Lua modules depends on
  25. the type of VLC Lua script your are in.
  26. Access lists
  27. ------------
  28. local a = vlc.acl(true) -> new ACL with default set to allow
  29. a:check("10.0.0.1") -> 0 == allow, 1 == deny, -1 == error
  30. a("10.0.0.1") -> same as a:check("10.0.0.1")
  31. a:duplicate() -> duplicate ACL object
  32. a:add_host("10.0.0.1",true) -> allow 10.0.0.1
  33. a:add_net("10.0.0.0",24,true) -> allow 10.0.0.0/24 (not sure)
  34. a:load_file("/path/to/acl") -> load ACL from file
  35. Configuration
  36. -------------
  37. config.get( name ): Get the VLC configuration option "name"'s value.
  38. config.set( name, value ): Set the VLC configuration option "name"'s value.
  39. HTTPd
  40. -----
  41. http( host, port, [cert, key, ca, crl]): create a new HTTP (SSL) daemon.
  42. local h = vlc.httpd( "localhost", 8080 )
  43. h:handler( url, user, password, acl, callback, data ) -- add a handler for given url. If user and password are non nil, they will be used to authenticate connecting clients. If acl is non nil, it will be used to restrict access. callback will be called to handle connections. The callback function takes 7 arguments: data, url, request, type, in, addr, host. It returns the reply as a string.
  44. h:file( url, mime, user, password, acl, callback, data ) -- add a file for given url with given mime type. If user and password are non nil, they will be used to authenticate connecting clients. If acl is non nil, it will be used to restrict access. callback will be called to handle connections. The callback function takes 2 arguments: data and request. It returns the reply as a string.
  45. h:redirect( url_dst, url_src ): Redirect all connections from url_src to url_dst.
  46. Input
  47. -----
  48. input.info(): Get the current input's info. Return value is a table of tables. Keys of the top level table are info category labels.
  49. input.is_playing(): Return true if input exists.
  50. input.get_title(): Get the input's name.
  51. input.stats(): Get statistics about the input. This is a table with the following fields:
  52.     .read_bytes
  53.     .input_bitrate
  54.     .demux_read_bytes
  55.     .demux_bitrate
  56.     .decoded_video
  57.     .displayed_pictures
  58.     .lost_pictures
  59.     .decoded_audio
  60.     .played_abuffers
  61.     .lost_abuffers
  62.     .sent_packets
  63.     .sent_bytes
  64.     .send_bitrate
  65. Messages
  66. --------
  67. msg.dbg( [str1, [str2, [...]]] ): Output debug messages (-vv).
  68. msg.warn( [str1, [str2, [...]]] ): Output warning messages (-v).
  69. msg.err( [str1, [str2, [...]]] ): Output error messages.
  70. msg.info( [str1, [str2, [...]]] ): Output info messages.
  71. Misc
  72. ----
  73. misc.version(): Get the VLC version string.
  74. misc.copyright(): Get the VLC copyright statement.
  75. misc.license(): Get the VLC license.
  76. misc.datadir(): Get the VLC data directory.
  77. misc.userdatadir(): Get the user's VLC data directory.
  78. misc.homedir(): Get the user's home directory.
  79. misc.configdir(): Get the user's VLC config directory.
  80. misc.cachedir(): Get the user's VLC cache directory.
  81. misc.datadir_list( name ): FIXME: write description ... or ditch function
  82.   if it isn't usefull anymore, we have datadir and userdatadir :)
  83. misc.mdate(): Get the current date (in milliseconds).
  84. misc.mwait(): Wait for the given date (in milliseconds).
  85. misc.lock_and_wait(): Lock our object thread and wait for a wake up signal.
  86. misc.should_die(): Returns true if the interface should quit.
  87. misc.quit(): Quit VLC.
  88. Net
  89. ---
  90. net.url_parse( url, [option delimiter] ): Parse URL. Returns a table with
  91.   fields "protocol", "username", "password", "host", "port", path" and
  92.   "option".
  93. net.listen_tcp( host, port ): Listen to TCP connections. This returns an
  94.   object with an accept method. This method takes an optional timeout
  95.   argument (in milliseconds). For example:
  96. local l = vlc.net.listen_tcp( "localhost", 1234 )
  97. while true do
  98.   local fd = l:accept( 500 )
  99.   if fd >= 0 do
  100.     net.send( fd, "blabla" )
  101.     net.close( fd )
  102.   end
  103. end
  104. net.close( fd ): Close file descriptor.
  105. net.send( fd, string, [length] ): Send data on fd.
  106. net.recv( fd, [max length] ): Receive data from fd.
  107. net.select( nfds, fds_read, fds_write, timeout ): Monitor a bunch of file
  108.   descriptors. Returns number of fds to handle and the amount of time not
  109.   slept. See "man select".
  110. net.fd_set_new(): Create a new fd_set.
  111. local fds = vlc.net.fd_set_new()
  112. fds:clr( fd ) -- remove fd from set
  113. fds:isset( fd ) -- check if fd is set
  114. fds:set( fd ) -- add fd to set
  115. fds:zero() -- clear the set
  116. net.fd_read( fd, [max length] ): Read data from fd.
  117. net.fd_write( fd, string, [length] ): Write data to fd.
  118. net.stat( path ): Stat a file. Returns a table with the following fields:
  119.     .type
  120.     .mode
  121.     .uid
  122.     .gid
  123.     .size
  124.     .access_time
  125.     .modification_time
  126.     .creation_time
  127. net.opendir( path ): List a directory's contents.
  128. Objects
  129. -------
  130. object.input(): Get the current input object.
  131. object.playlist(): Get the playlist object.
  132. object.libvlc(): Get the libvlc object.
  133. object.find( object, type, mode ): Find an object of given type. mode can
  134.   be any of "parent", "child" and "anywhere". If set to "parent", it will
  135.   look in "object"'s parent objects. If set to "child" it will look in
  136.   "object"'s children. If set to "anywhere", it will look in all the
  137.   objects. If object is unset, the current module's object will be used.
  138.   Type can be: "libvlc", "playlist", "input", "decoder",
  139.   "vout", "aout", "packetizer", "generic".
  140.   This function is deprecated and slow and should be avoided.
  141. object.find_name( object, name, mode ): Same as above except that it matches
  142.   on the object's name and not type. This function is also slow and should
  143.   be avoided if possible.
  144. OSD
  145. ---
  146. osd.icon( type, [id] ): Display an icon on the given OSD channel. Uses the
  147.   default channel is none is given. Icon types are: "pause", "play",
  148.   "speaker" and "mute".
  149. osd.message( string, [id] ): Display text message on the given OSD channel.
  150. osd.slider( position, type, [id] ): Display slider. Position is an integer
  151.   from 0 to 100. Type can be "horizontal" or "vertical".
  152. osd.channel_register(): Register a new OSD channel. Returns the channel id.
  153. osd.channel_clear( id ): Clear OSD channel.
  154. Playlist
  155. --------
  156. playlist.prev(): Play previous track.
  157. playlist.next(): Play next track.
  158. playlist.skip( n ): Skip n tracs.
  159. playlist.play(): Play.
  160. playlist.pause(): Pause.
  161. playlist.stop(): Stop.
  162. playlist.clear(): Clear the playlist.
  163. playlist.repeat( [status] ): Toggle item repeat or set to specified value.
  164. playlist.loop( [status] ): Toggle playlist loop or set to specified value.
  165. playlist.random( [status] ): Toggle playlsit random or set to specified value.
  166. playlist.goto( id ): Go to specified track.
  167. playlist.add( ... ): Add a bunch of items to the playlist.
  168.   The playlist is a table of playlist objects.
  169.   A playlist object has the following members:
  170.       .path: the item's full path / URL
  171.       .name: the item's name in playlist (OPTIONAL)
  172.       .title: the item's Title (OPTIONAL, meta data)
  173.       .artist: the item's Artist (OPTIONAL, meta data)
  174.       .genre: the item's Genre (OPTIONAL, meta data)
  175.       .copyright: the item's Copyright (OPTIONAL, meta data)
  176.       .album: the item's Album (OPTIONAL, meta data)
  177.       .tracknum: the item's Tracknum (OPTIONAL, meta data)
  178.       .description: the item's Description (OPTIONAL, meta data)
  179.       .rating: the item's Rating (OPTIONAL, meta data)
  180.       .date: the item's Date (OPTIONAL, meta data)
  181.       .setting: the item's Setting (OPTIONAL, meta data)
  182.       .url: the item's URL (OPTIONAL, meta data)
  183.       .language: the item's Language (OPTIONAL, meta data)
  184.       .nowplaying: the item's NowPlaying (OPTIONAL, meta data)
  185.       .publisher: the item's Publisher (OPTIONAL, meta data)
  186.       .encodedby: the item's EncodedBy (OPTIONAL, meta data)
  187.       .arturl: the item's ArtURL (OPTIONAL, meta data)
  188.       .trackid: the item's TrackID (OPTIONAL, meta data)
  189.       .options: a list of VLC options (OPTIONAL)
  190.                 example: .options = { "fullscreen" }
  191.       .duration: stream duration in seconds (OPTIONAL)
  192.       .meta: custom meta data (OPTIONAL, meta data)
  193.              A .meta field is a table of custom meta categories which
  194.              each have custom meta properties.
  195.              example: .meta = { ["Google video"] = { ["docid"] = "-5784010886294950089"; ["GVP version"] = "1.1" }; ["misc"] = { "Hello" = "World!" } }
  196.   Invalid playlist items will be discarded by VLC.
  197. playlist.enqueue( ... ): like playlist.add() except that track isn't played.
  198. playlist.get( [what, [tree]] ): Get the playist.
  199.   If "what" is a number, then this will return the corresponding playlist
  200.   item's playlist hierarchy. If it is "normal" or "playlist", it will
  201.   return the normal playlist. If it is "ml" or "media library", it will
  202.   return the media library. If it is "root" it will return the full playlist.
  203.   If it is a service discovery module's name, it will return that service
  204.   discovery's playlist. If it is any other string, it won't return anything.
  205.   Else it will return the fullplaylist.
  206.   The second argument, "tree", is optional. If set to true or unset, the
  207.   playlist will be returned in a tree layout. If set to false, the playlist
  208.   will be returned using the flat layout.
  209.   Each playlist item returned will have the following members:
  210.       .id: The item's id.
  211.       .flags: a table with the following members if the corresponing flag is
  212.               set:
  213.           .save
  214.           .skip
  215.           .disabled
  216.           .ro
  217.           .remove
  218.           .expanded
  219.       .name:
  220.       .path:
  221.       .duration: (-1 if unknown)
  222.       .nb_played:
  223.       .children: A table of children playlist items.
  224. FIXME: add methods to get an item's meta, options, es ...
  225. SD
  226. --
  227. sd.get_services_names(): Get a table of all available service discovery
  228.   modules. The module name is used as key, the long name is used as value.
  229. sd.add( name ): Add service discovery.
  230. sd.remove( name ): Remove service discovery.
  231. sd.is_loaded( name ): Check if service discovery is loaded.
  232. Stream
  233. ------
  234. stream( url ): Instantiate a stream object for specific url.
  235. s = vlc.stream( "http://www.videolan.org/" )
  236. s:read( 128 ) -- read up to 128 characters. Return 0 if no more data is available (FIXME?).
  237. s:readline() -- read a line. Return nil if EOF was reached.
  238. Strings
  239. -------
  240. strings.decode_uri( [uri1, [uri2, [...]]] ): Decode a list of URIs. This
  241.   function returns as many variables as it had arguments.
  242. strings.encode_uri_component( [uri1, [uri2, [...]]] ): Encode a list of URI
  243.   components. This function returns as many variables as it had arguments.
  244. strings.resolve_xml_special_chars( [str1, [str2, [...]]] ): Resolve XML
  245.   special characters in a list of strings. This function returns as many
  246.   variables as it had arguments.
  247. strings.convert_xml_special_chars( [str1, [str2, [...]]] ): Do the inverse
  248.   operation.
  249. Variables
  250. ---------
  251. var.get( object, name ): Get the object's variable "name"'s value.
  252. var.set( object, name, value ): Set the object's variable "name" to "value".
  253. var.get_list( object, name ): Get the object's variable "name"'s value list.
  254.   1st return value is the value list, 2nd return value is the text list.
  255. var.create( object, name, value ): Create and set the object's variable "name"
  256.   to "value". Created vars can be of type float, string or bool.
  257. var.add_callback( object, name, function, data ): Add a callback to the
  258.   object's "name" variable. Callback functions take 4 arguments: the
  259.   variable name, the old value, the new value and data.
  260. var.del_callback( object, name, function, data ): Delete a callback to
  261.   the object's "name" variable. "function" and "data" must be the same as
  262.   when add_callback() was called.
  263. var.command( object name, name, argument ): Issue "object name"'s "name"
  264.   command with argument "argument".
  265. var.libvlc_command( name, arguement ): Issue libvlc's "name" command with
  266.   argument "argument".
  267. Video
  268. -----
  269. video.fullscreen( [status] ):
  270.  * toggle fullscreen if no arguments are given
  271.  * switch to fullscreen 1st argument is true
  272.  * disable fullscreen if 1st argument is false
  273. VLM
  274. ---
  275. vlm(): Instanciate a VLM object.
  276. v = vlc.vlm()
  277. v:execute_command( "new test broadcast" ) -- execute given VLM command
  278. Note: if the VLM object is deleted and you were the last person to hold
  279. a reference to it, all VLM items will be deleted.
  280. Volume
  281. ------
  282. volume.set( level ): Set volume to an absolute level between 0 and 1024.
  283.   256 is 100%.
  284. volume.get(): Get volume.
  285. volume.up( [n] ): Increment volume by n steps of 32. n defaults to 1.
  286. volume.down( [n] ): Decrement volume by n steps of 32. n defaults to 1.