]> git.sesse.net Git - vlc/blob - share/lua/meta/reader/README.txt
Allow lua "meta reader" and implement a meta reader from filename.
[vlc] / share / lua / meta / reader / README.txt
1 Instructions to code your own VLC Lua meta script.
2 $Id$
3
4 See lua/README.txt for generic documentation about Lua usage in VLC.
5
6 Examples: See filename.lua .
7
8 VLC Lua "meta reader" modules should define one of the following functions:
9  * read_meta(): returns a path to an artwork for the given item
10
11 Available VLC specific Lua modules: msg, stream, strings, variables, item,
12 objects and misc. See lua/README.txt
13
14 Note, those scripts are supposed to be fast. Read non blocking, no IO.