Page 1 of 1

VLC 0.8.5: http control interface changed

Posted: 24 Jun 2006 10:32
by jockyw2001
I've coded a mediaplayer with VLC client for Sony PSP (firmware 1.5).
http://forums.ps2dev.org/viewtopic.php?t=6053

It works very nice and controls VLC 0.8.4a through the http interface. However, with 0.8.5 the control interface does no longer work.

What has changed in 0.8.5?

Thx, JockyW

PS: here are various control urls I send to VLC:

The ones who work are:

Code: Select all

clear playlist: http://localhost:8080/?control=empty add mrl to playlist: http://localhost:8080/?control=add&mrl=xyz play: http://localhost:8080/?control=play stop: http://localhost:8080/?control=stop pause: http://vlcserver:8080/?control=pause seek: http://localhost:8080/?control=seek&seek_value=%s
and this one doesn't, what is the new format?

Code: Select all

sout transcode: http://localhost:8080/?sout=#transcode{vcodec=mpgv,vb=2000,acodec=mpga,ab=192,channels=2}:duplicate{dst=std{access=http,mux=ts,url=:8080/pspstream}}

Posted: 24 Jun 2006 15:25
by dionoea
the old interface is still available at localhost:<port>/old/. Else you can try using the commands in /requests/

Posted: 24 Jun 2006 15:34
by jockyw2001
I just discovered it myself.
Thanks anyway :)