Ok I setup VLC for web interface. I can now access it using http://127.0.0.1:8080/
How can I setup PHP to send commands to VLC now? I want to be able to open files, seek, build playlist, pause, and adjust volume (all using my own PHP code).
I played around with this a year ago, and did some googling, but it appears things have changed. Think I used status.xml and browse.xml before, now those files do not even seem to appear. And now that VLC forces a password, it also throwns another monkey wrench into this (php would need to somehow connect using the password?).
The wiki is out dated. So no luck there. Can anyone help me out? By showing me some PHP code examples, or updated documentation on this?
edit: looks like its here:
http://127.0.0.1:8080/requests/status.xml
http://127.0.0.1:8080/requests/status.json
http://127.0.0.1:8080/requests/playlist.xml
etc.
I am using this resource: http://git.videolan.org/?p=vlc.git;a=bl ... xt;hb=HEAD
Ok, looks very good so far. I guess tomorrow ill just look at how to connect with the password (which im sure its possible).