1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-31 06:46:39 +02:00

Lua: document function vlc.stream : addfilter

This commit is contained in:
Jean-Philippe André 2009-12-19 19:33:33 +01:00
parent 9304b7db2b
commit 1a9b837783

View File

@ -271,6 +271,7 @@ stream( url ): Instantiate a stream object for specific url.
s = vlc.stream( "http://www.videolan.org/" )
s:read( 128 ) -- read up to 128 characters. Return 0 if no more data is available (FIXME?).
s:readline() -- read a line. Return nil if EOF was reached.
s:addfilter() -- add a stream filter. If no argument was specified, try to add all automatic stream filters.
Strings
-------