Page 1 of 1

Adding items with multiple options to the playlist

Posted: 18 Dec 2012 00:06
by jml674
Hey,
I'm trying to add items to a remote vlc server playlist using the LUA http request.
I managed to add the following item:
"http://192.168.1.3/requests/status.json ... rogram=257"

I'm now trying to add multiple options but the LUA script seems to ignore anything beyond the first option:
example:
"http://../status.json?command=in_play&input=dvbt://frequency=562000&option=:program=257 :meta-title=test"
=>the meta-title is not taken into account ...

Anybody can help on the proper syntax ?

thanks in advance!

Re: Adding items with multiple options to the playlist

Posted: 18 Dec 2012 01:56
by Jean-Baptiste Kempf
Those are separate item options, and won't work through HTTP interface, I think.

Re: Adding items with multiple options to the playlist

Posted: 18 Dec 2012 09:40
by jml674
After a long night of head-scratching, it is in fact possible:

"http://../status.json?command=in_play&input=dvbt://frequency=562000&option=:program=257&option:meta-title=test"