Commit 0c0756dd authored by Jean-Philippe André's avatar Jean-Philippe André

Lua: fix typo in rc.lua

parent b2b191a7
...@@ -26,14 +26,14 @@ description= ...@@ -26,14 +26,14 @@ description=
Remote control interface for VLC Remote control interface for VLC
This is a modules/control/rc.c look alike (with a bunch of new features) This is a modules/control/rc.c look alike (with a bunch of new features)
Use on local term: Use on local term:
vlc -I luarc vlc -I luarc
Use on tcp connection: Use on tcp connection:
vlc -I luarc --lua-config "rc={host='localhost:4212'}" vlc -I luarc --lua-config "rc={host='localhost:4212'}"
Use on multiple hosts (term + 2 tcp ports): Use on multiple hosts (term + 2 tcp ports):
vlc -I luarc --lua-config "rc={hosts={'*console','localhost:4212','localhost:5678'}}" vlc -I luarc --lua-config "rc={hosts={'*console','localhost:4212','localhost:5678'}}"
Note: Note:
-I luarc is an alias for -I lua --lua-intf rc -I luarc is an alias for -I lua --lua-intf rc
...@@ -352,7 +352,7 @@ function titlechap(name,client,value) ...@@ -352,7 +352,7 @@ function titlechap(name,client,value)
else else
local item = vlc.var.get( input, var ) local item = vlc.var.get( input, var )
-- Todo: add item name conversion -- Todo: add item name conversion
client:apped(item) client:append(item)
end end
end end
function titlechap_offset(client,offset) function titlechap_offset(client,offset)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment